Archived topic
CPT no sidebar
2 replies · Started by Bebop on March 27, 2021
Viewing posts 1–3 of 3
I followed this: https://docs.generatepress.com/article/setting-up-a-simple-custom-post-type/
How do I make the CPT loop page not have a sidebar?
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;
} );
Hi there,
you can use the Layout Element to disable the Sidebar:
https://docs.generatepress.com/article/layout-element-overview/
This archived topic is closed to new replies.