featured posts on category pages

Posted in: Newspaper
Post count: 41

Hi, is there anything I can do to not see the latest featured post twice on the category pages(featured post slider + post’s itself)? I mean, something like the unique article system used on homepage would be good, but I’m open to anything that you think can be a help of.

Post count: 6600

Hi,

You can try this:

– first you have to find the Featured category id: http://screencast.com/t/F3nNBlBFyL4y
– second add the following code at the bottom of the functions.php file: http://screencast.com/t/LmfR2p7XP9

add_action( 'pre_get_posts', 'be_exclude_category_from_blog' );
function be_exclude_category_from_blog( $query ) {

    if( !is_admin() && $query->is_main_query() && $query->is_category() ) {
        $query->set( 'cat', '-2' );
    }
}

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.