Site logo

Archived topic

Look of search page, esp. featured post

3 replies · Started by Dushan on January 23, 2018

Viewing posts 1–4 of 4

Hi, while I love the "featured" (=first and largest) post on the front page, the first post being automatically "featured" on the search results page seems weird. – Any way to style the search results page differently than the homepage?

Hi there,

Try this snippet here:

add_filter( 'option_generate_blog_settings', 'lh_disable_search_featured_post' );
function lh_disable_search_featured_post( $options ) {
    if ( is_search() ) {
        $options['featured_column'] = false;
    }
    return $options;
}

Adding PHP: https://docs.generatepress.com/article/adding-php/

Thank you, that worked great!

No problem :)

This archived topic is closed to new replies.