Change layout for all posts Omega theme

Home Forums Omega Child Change layout for all posts Omega theme

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #2577
    pixeltoko
    Participant

    Hi,

    Is there a quick way to change the layout for ALL posts at once?
    I am using Omega with the content/sidebar layout but my posts also show this layout. Instead I want my posts to show only content no sidebar. I have quite some posts so I wondered if there is a way to change this quickly for all posts.

    Thanks for your support.

    PixelToko

    #2585
    han
    Keymaster

    You can insert this code into functions.php of your child theme,

    add_filter( 'theme_mod_theme_layout', 'my_theme_layout', 11 );
    
    function my_theme_layout( $layout ) {
    	if ( is_singular('post')) {		
    		$layout = '1c';
    	}
    
    	return $layout;
    }
    #2588
    pixeltoko
    Participant

    @han thanks for your quick response that works great!

Viewing 3 posts - 1 through 3 (of 3 total)

You must login to reply to this topic.