Exclude Category from Archive
This snippet excludes posts from a specific category in archive pages, useful for hiding certain content from main archives.
PHP
function exclude_category_from_archive($query) {
if ($query->is_archive() && $query->is_main_query()) {
$query->set('cat', '-5'); // Replace 5 with the ID of the category to exclude
}
}
add_action('pre_get_posts', 'exclude_category_from_archive');
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY
1 Views