Created
August 9, 2015 04:36
-
-
Save tokopress/2c5eddf6e9e4c8edf153 to your computer and use it in GitHub Desktop.
Marketica - Use Full Width Layout For CM Answer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'tokopress_layout_class', 'mycustom_cmanswer_layout_class' ); | |
| function mycustom_cmanswer_layout_class( $layout ) { | |
| if ( is_singular('cma_thread') ) | |
| $layout = 'layout-1c-full'; | |
| return $layout; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment