Exclude category from Latest Article

Posted in: Newspaper
Post count: 10

Hi

I have a category called “poster” when I create post with in this category. That new post shown in My home page under Latest Article.

So How can I Exclude category(“Poster”) from Latest Article.

Thanks

Post count: 23312

Hello sachinjain007,

Please provide your website URL so I can saw this section from your website and also, so I will be able to provide a more accurate response.

Thanks for the message!

Post count: 10

Hi Catalin

Website URL ByteNbit

There is my post “Use Quora Without Login” associated with poster Category which is shown under Latest Article.

I want to exclude all posts which are under “poster Category” from showing under Latest Article.

Thanks

Post count: 16
Post count: 10

Hi

I found the solution of this without using any plugin

Insert the code in function.php file

function exclude_category($query) {
if ( $query->is_home() ) {
$query->set('cat', '-xx');
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');

Replace xx with category ID

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.