You should use pre_get_posts
to alter the main query on the home page.
With the proper conditional tags and parameters (check WP_Query
for available parameters) you can achieve what you need
You can do the following to just display posts from a given tag on your homepage
add_action( 'pre_get_posts', function ( $query ) {
if ( !is_admin() && $query->is_home() && $query->is_main_query() ) {
$query->set( 'tag', 'SLUG_OF_TAG' );
}
});
Related Posts:
- Why is wp_kses not keeping style attributes as expected?
- WordPress: Can I add categories/tags to all sites in my network at once?
- How to Get Next or Previous Post in a Specific Tag?
- Stop wordpress from removing HTML attributes
- What is the difference between terms and tags?
- How to use the Tag description as the title attribute?
- Apply class to the a tag link generated in post tag links
- Showing all tags in admin -> edit post
- Redirect Tag to Post with the same name
- Add exception for specific tag
- Link from tags to tag pages displaying all posts with that tag
- How can I extend Quick Edit option with 2 more fields
- How to separate the tags?
- Creating a unique, linked list of tags from a specific category?
- Add # before each tag
- term/tag not being saved for custom post type
- require one tag for each post
- Stop WordPress removing tags when switching from HTML to Visual (TinyMCE)
- WP API Get post with tag names instead of tag ID’s
- get_terms with more than x post count
- How to show tags in posts, orderby count(most used) not alphabetically?
- Individual css class for each tag in wp_tag_cloud
- Strict tag list – user should choose only existing tags for posts
- Display all posts of current viewing tag
- Exclude specific tags (by id) from the_tags
- Display custom list of tags in post/page editor with hooks
- How to remove ‘noindex, follow, max-image-preview:large’ in search page WordPress 5.7 up
- Displaying Posts by tag dynamically in WordPress
- How to not show tags if the post doesn’t have any?
- Tag with Alias capability
- How to remove tag base from permalinks
- Creating a “Tags” page with search option, instead of using a widget
- Remove the last character from tag name in tag archive page
- Use current date as tag?
- How to Override “Blog pages show at most” in tag.php [duplicate]
- mystery tags which I didn’t add – vulnerability?
- How to display tag cloud without links
- Get tags for post_type
- Line of Tag information Is Formatted Strange
- How can I make an auto-fill search box auto-completing with the tags?
- How to hide certain tags from the_tags()?
- OG Meta Tags not being scraped by facebook or twitter
- woocommerce product tags display
- Please help me to figure out how to display my tags
- List tags by certain letter issue with special chars like å, ä and ö
- Strip and tags from a specific div
- Get Adjacent Post By Tag
- How to enable all Tag Descriptions in loop?
- WordPress Tag Page Hook?
- Remove short link tag from particular page
- Stop wordpress from adding html tags but not remove my own tags?
- merging terms programmatically while maintaining the count
- Why is Heading tag Auto applied to Post data? [closed]
- How can i order get_the_tags?
- Tagcloud: different color for different text size
- How to get tags outside of loop for specific page I’m on?
- “ Language notation in the post content
- how do i put “h1” tag in css as class and call it anywhere in the website files [closed]
- Sort tags by first letter or included number
- WordPress tags as twitter sharer URL hastags
- Add post tag without post id
- Removing a taxonomy term
- Show all videos by tag name
- Changing H1 to Normal Links
- How to change tag Title to its name?
- Setup proper 301 redirect for deleted tags
- Problem using the word “RSS” as a tag
- Bumping a (tagged) post to the top of archives
- Print_r displaying two different post->ID if placed in sidebar or single.php
- How to set thumbnail for each tag?
- Missing tags, unexisting tags in search form within products, please help
- Tags page not for post
- Remove link and Add class to get_the_tag_list()
- Random tag in the post
- How to get tags from different blog?
- Get the publish date of the older post inside a tag
- How to test if the tag list is empty for the current page?
- Unwanted word behind my title in SERP
- Unable to Change Title in WordPress Dashboard
- How to Group While Loop “Results” of wp_query?
- get_the_tags function not retrieve all tags for specific category
- showing tag beside catagory
- Auto-Tagging a Custom Post Type
- Hide Tag Title When No Tags
- Feedburner closing error
- Change CSS on tag in tagcloud, if ther current post is tagged with the tag
- Display posts containing at least 1 from a list of say 10 tags but not containing other tags
- where to find on backend to amend and edit title tage for each page on website?
- Create a separate widget for both Tags and TagsCloud?
- How to make a Post Tag primary?
- How can I edit the slugs of tags?
- Tags as autocomplete values
- Need to return all tags – including empty ones – in list
- Listing tags with custom html output
- Exclude specific tag or tags from related posts?
- Show tags in post? Function not working
- How to export tag counts to excel?
- How to make attachment tag archive visible on page
- What file is responsible with tags displaying on the post?
- wordpress assign all existing tags to a specific post