Site logo

Archived topic

CPT no sidebar

2 replies · Started by Bebop on March 27, 2021

Viewing posts 1–3 of 3

add_filter( 'generate_sidebar_layout', function( $layout ) {
    // If we are on a category, set the sidebar
    if ( is_category() ) {
        return 'no-sidebar';
    }

    // Or else, set the regular layout
    return $layout;
 } );
This archived topic is closed to new replies.