From your comments, you opted for a custom page template. Based on that, you can simply perform a custom query to retrieve posts that belongs to a certain tag and category
I tend to make use of a tax_query
using WP_Query
when you quering posts from more than one taxonomy. It is more flexible, specially if you need to exclude children from hierarchical taxonomies
You can construct your query as follow
$args = array(
'post_type' => 'post',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'SLUG OF THE CAT',
),
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => 'SLUG OF THE TAG',
),
),
);
$query = new WP_Query( $args );
You can visit the links provided to learn how to construct your loop using WP_Query
Related Posts:
- display specific category when website loads
- Get the children of the parent category
- How to display non-hierarchical taxonomy as terms with checkboxes?
- Control term order on a per-post basis
- Main menu not appearing on category pages
- Rewrite URL with category and tag combined using WP_Rewrite
- How to tax query X number of posts related by tag first, then by category if not enough in tag-related
- Use tag interface for hierarchical taxonomy?
- Using URL parameters, list posts from category and custom taxonomy
- Are Categories, Tags and Custom Taxonomies any different in regards to SEO?
- Create subdomains for tags and categories
- Automated adding of one tag to all the posts in a category
- Moving Categories submenu to Media, but still opens Posts menu
- When using get_categories or similar, is it possible to filter results that contain certain Tags as well?
- How to totally get rid of Category in my blog?
- Showing all the posts in one page?
- Categories and Tags returning 404 on the sidebar when using ugly permalinks
- Is it possible to put next and previous category links?
- Deleting All tags except categories Wp database
- Is it possible to put tags and category information in the post as text?
- Script to duplicate categories as tags
- Search by word, category, tag, author
- How to filter archives both by category and tag?
- display most popular tags of category?
- Can paginate_links() be customized for a specific category or tag?
- Category archive page – loop through posts of certain tag (with pagination) – pre_get_posts
- Custom WP_Query for current category (in category.php)?
- Are Category or Tag Archive Pages Possible?
- How can I duplicate categories and tags?
- How to run select query of post with category and tags for API?
- Random post + categories + tags
- Search Posts / Pages with multiple options?
- How to display only posts assigned to a particular, isolated, subcategory
- RSS/XML of all Categories and/or Tags
- Get Tags specific to Category using WooCommerce plugin
- Checkboxes in the category list?
- Restoring default article pagination on archives – Removing custom limits
- How to get related tags based on a category?
- Needing a snippet for listing category specific tags
- “Categories” for six authors [closed]
- How to list categories within tags?
- How to “group” (categorize) the Pages together?
- Is There a Difference Between Taxonomies and Categories?
- Use Tag input metabox style for Categories
- Custom SQL Query: Get all posts with category id and a concated list of tags on each post
- limit a list of tags to one category [closed]
- Have multiple category queries from the URL been fixed yet?
- Related Tags not in category
- scaleability of tags
- How do I add a tag slug to a category URL to filter posts?
- Show the amount of posts in a tag in a specific category has
- Display all product tags associated with a specific product category
- How replace individual elements in the RSS feed with a single string
- Adding a H1 Tag to Post Tags automatically, but hide the tag? (Same for Category)
- Conditional category & tag statement
- Include either name or slug in the include parameter using wp_list_categories?
- List all posts of certain category which share some tags
- How can I filter posts by tag on the fly
- Retrieve post tags from from main wp_query
- Advanced permalinks structure
- Filter categories/tags to display in multiple metaboxes for selection in back-end
- How can I include custom category and tag base in template files?
- Autolinking keywords in text with tags
- Maintaining a separate posts page for certain categories and don’t show those on home page
- Are tags different than categories?
- Custom menu with categories and tags
- Show Posts via cat+cat in URL that are in both Categories doesn’t work
- Help to display the current categories and tags of a post
- Automatically adding tags and categories into Post Excerpt for searching
- How to filter tags by category?
- How to add all subcategories as submenu in WordPress menu
- How to prevent tag “iframe” from being deleted from the heading description of rubric?
- Hide specific category tag on single post page
- Filtering posts in category by tag URL
- echo $category[0]-> cat_name; shows only one category name
- When creating category, it creates automatically tag, or, when creating tag, it creates automatically category in same name
- Using heirarchial tags or Custom taxonomies
- omit categories from main navigation menu
- Balance Tags to the_content Words Length
- Category and tag urls return 404 error
- How to echo Tags and Categories as plain text
- Hide category name using mod_rewrite
- How to exclude category and post_tag taxonomy while displaying custom taxonomy?
- 404 error when i try to search by category or by tag
- Loop within category’s posts
- How to remove specific categories from tag archives?
- Page Type with Category Link
- Display related posts with same category or same tag return blank
- How can I allow people to ‘subscribe’ to categories?
- How to add an empty entry to masonry?
- Own Custom Tags/Category page ( posts)
- Loops in category description
- How to create a category or tag available exclusively to the admins and not to the users?
- Tracking multiple tags or categories
- How to load jquery tag-it plugin into admin?
- Modify functions.php to add a term ‘uses-theme’ set to theme name on post save
- List products from current category
- Query posts that have all the specified tags
- Moving Blog and Changing URL
- In my wordpress admin panel Suddenly The Category, tag and featured Image Option are not showing