Have you tried using a normal loop in your tag template like this
<?php while ( have_posts() ) : the_post() ?>
//add content code or template
<?php endwhile; ?>
And then using the pre_get_posts
filter like this
function exclude_category( $query ) {
if ( $query->is_tag() && $query->is_main_query() ) {
$query->set( 'cat', '-433' );
}
}
add_action( 'pre_get_posts', 'exclude_category' );
Related Posts:
- Exclude a category from the filed under list only on some templates
- exclude category from get_posts?
- Exclude the category from the WordPress loop
- Preventing index.php?category_name=something from redirecting
- Make all subcategories use the template of its category parent?
- Exclude certain category from latest updates
- Exclude categories from Loop, queries, widgets, post navigation
- List posts by category exclude current post
- wp_list_categories exclude not working
- Different templates for parent and children categories/taxonomies
- Excluding a category from next and previous post links
- Exclude Category From Home Page, Display Posts on It’s Own Page?
- Display only deepest category on a single post?
- How do I set a specific template for sub-categories?
- How to exclude categories from recent posts, recent comments & category widgets?
- Create single.php for specific category by category id
- is_archive() content being shown instead of is_category()
- How to override Category rendering mechanism
- How to control template resolution if both Author and Category filter in place?
- Which php file lists all the post of a category
- Apply custom category template to subcategories
- Custom page for WooCommerce’s /product-category/
- Code to pull in a PHP file named after the category ID
- How to exclude posts from a category when using this particular format
- exclude post from displaying in loop if it is in a category, but not in many categories
- How to make a Thumbnails Mosaic
- Are Category or Tag Archive Pages Possible?
- Possible to make a subdirectory that loops through a single category?
- Need Category RSS Feed that shows all posts
- WooCommerce IF statements not working
- I need to create a search form that will display search results from specific category
- Set a them for all subset of category
- How to display only posts assigned to a particular, isolated, subcategory
- Exclude Posts From Specific Category from Next and Previous post links
- Highlight wp_nav_menu when category is selected
- Query Posts Exclude Entire Category
- Archive.php filtered by pre-determined category
- exclude categories from search results
- Exclude category from fucntion
- one category template for multiple categories
- Different templates for different category tags
- WordPress category widget only show categories with children
- The default code for “posts_nav_link” on category.php isn’t working
- Only one post is showing on category page, why?
- Updating category template to change how subcategories display
- Categories overview that links to page displaying posts
- How can I get categories IDs if multiple categories requested via URI?
- Category template to show different categories based on parent
- Does “show_option_all” in wp_list_categories do anything?
- How can I improve this taxonomy treating approach?
- Sub category templates
- Custom taxonomy template for categories
- How to insert category list into post creation page, and retrieve chosen categories?
- Limit number of posts on a custom category template – breaking pagination
- wp_list_pages() exclude category
- Exclude category from query
- Functions.php: Exclude Category from “Blog”
- How can I display the number of post associated to a category in Twig/Timber WordPress? [closed]
- Is it possible to have a template that works on multiple categories where the link address contains the specific category?
- Custom template for sub-sub-categories
- What Must to Display the “mysite.com/category” URL?
- Woocommerce filter function not updating
- wp_list_categories not excluing multiple ids
- How to use wp_list_categories with plugin category?
- Using if statement in index.php instead of creating separate template files
- Why is my sub-category template showing the wrong posts
- Template for product-category page [closed]
- Add Date & Author Meta to Category Archive Page
- How to exclude posts from category posts count
- Exclude category from foreach loop
- Have posts that belong to multiple categories, exclude some categories from homepage
- Exclude all subcategories in the_category (post)
- Display subcategories selectbox on each category page
- I need to exclude from a query a category and a few custom taxonomies
- Exclude categories by ID
- Displaying year once in category.php [duplicate]
- Category link redirect to custom template page instead of index.php?
- I would like to feature a tip on the homepage
- How to differentiate the homepage structure from the category page structure in WordPress template?
- Homepage custom recent news
- How can I include custom category and tag base in template files?
- Different header for each category
- Category Template – Show Last Entry as Featured
- Exclude the category in WordPress
- Custom post type archive category page results in 404
- How can I exclude a category from the main loop with the category name & not ID?
- Include home page template in specific category template
- User level categories
- Exclude category from drop down list form
- Output Title of Post’s Current Category
- Showing different posts on category pages
- Displaying categories in different template problem
- exclude certain categories form archive widget
- Include last post date in get_categories loop
- How to list posts from a sub-category that is listed in a parent category (more details below)?
- How to remove an item from a custom Walker_Nav_Menu
- Exclude a category and post_type from wp_query
- Custom Archive Template for Multiple Categories
- How can I exclude a particular category from my WordPress Page 1 and Page 2?
- Category custom template is not showing correct posts