Skip to content

Instantly share code, notes, and snippets.

@tokopress
Created August 9, 2015 04:36
Show Gist options
  • Save tokopress/2c5eddf6e9e4c8edf153 to your computer and use it in GitHub Desktop.
Save tokopress/2c5eddf6e9e4c8edf153 to your computer and use it in GitHub Desktop.
Marketica - Use Full Width Layout For CM Answer
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