Site logo

Archived topic

Disable columns on specific archive pages

3 replies · Started by Fabien on October 29, 2020

Viewing posts 1–4 of 4

Hi,

I've setup (using the customizer) a 3 columns layout for my blog archive page. Is it possible to disable (using a php function) the columns for specific post types ?

Thanks !

(Just to add something, I want to remove columns on my search result page)

I've found a solution !

add_filter( 'generate_blog_columns','tu_portfolio_columns' );
function tu_portfolio_columns( $columns ) {
    if ( is_search() ) {
        return false;
    }

    return $columns;
}

Glad to hear you found the solution!

This archived topic is closed to new replies.