Archived topic
Archive Column
3 replies · Started by demoxing on September 15, 2020
Viewing posts 1–4 of 4
I want 2 columns on my homepage, it is just fine. but I don't want to show 2 columns in my category section.
Possible to display archive posts in a single column?
reference: https://imgur.com/P9sphPy
Hi there,
try adding this PHP Snippet:
add_filter( 'generate_blog_columns','db_blog_only_columns' );
function db_blog_only_columns( $columns ) {
if ( !is_home() ) {
return false;
}
return $columns;
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
Thanks, David! you always rock ❤️
Glad to be of help :)
This archived topic is closed to new replies.