The query would look something like this:
$title_tagged_posts_query = new WP_Query( array(
'tag' => strtolower( get_the_title() )
) );
while ( $title_tagged_posts_query->have_posts() ) : $title_tagged_posts_query->the_post();
//Output whatever you want here.
endwhile;
This assumes that the tag slug for “Hippo” is “hippo”, which should normally be the case.
Related Posts:
- Filter Posts By Tag
- WordPress query_posts by tag doesn’t work anymore(?)
- Conditionals if tags exist?
- Keep featured content post in homepage with original order
- How to get posts published between a date and today?
- How to show related posts by category
- WordPress removing tags?
- the_author() returns empty string
- Add tag to post api wordpress
- Set tags for a post – without tag creation
- Display all posts from specific categories on a page
- How to remove Nextpage tag inside posts text depending of utm_campaign
- Verify if tag is used on posts
- How to exclude latest x posts from a paginated query?
- Display content from a specific category
- How to display posts by current user/author in a custom page template?
- post_name empty after wp_insert_post
- Plain-text tag list?
- Display posts by tag on page
- Query posts distinct authors
- Edit a post from frontend. post_tags get saved, but not separated
- How to get previous 10 days post from a specific date – WP Query
- Number of posts per page setting is not working?
- Convert IPTC keywords to blog post tags
- WordPress Posts Out Of Order after 3.1 Update
- Query only Posts from Both of Two Category?
- how to limit and display tag?
- Insert custom div between posts
- Can’t show comments count per post outside loop
- Only display posts with comments
- Include related posts on a page
- Order post by year DESC and month ASC
- WordPress get posts by date without query_posts
- How to display post tags
- How to Display Post View Count
- How to add shortcode tags in single.php [closed]
- Remove post_tag from default post type, add custom taxonomy
- Different amount of posts on homepage than paged pages
- What Defines What Category A Post Picks (if in multiple)
- Featured Posts for Category Pages
- Cannot Update A Post, 404 Error
- Function to show random posts from a category
- Does an action fire when adding a tag via the “Tags” meta box?
- Hiding posts in a list from specified categories
- how to programmatically change post tags
- How would I get 1 latest post from a query for 5 posts?
- Can I set and show “important” post in my blog?
- WordPress post tag & custom field
- WP Query related posts by current page Tag ID
- Exclude posts with empty post_content in wp_query
- How to display all posts assigned to some tag?
- How To Add One Tag to Multiple Posts?
- Add Post Tags to Body Class
- How to prevent WordPress from updating the modified time?
- Improving WP_Query for performance when random posts are ordered
- WP Query – duplicated posts once including tags in search results
- Create dropdown list post
- wp_tag_cloud() and the_taxonomies() work but not the_tag()
- I would like to give special promotion for the first 100 posts in my blog? Can anyone tell me how to do that?
- previewing my posts on static page?
- Exclude newest post from category X but show rest
- Tags to Post-ID mysql query. Tag Search
- Reset Popular post query?
- How to add Tags Filter in wordpress admin dashboard
- Prepend or add an Image to the content of a Post
- Display post from current category and same tag?
- Inserting custom data to the_post() during loop
- How To Get Posts With A Specific Word
- Why WP_Query(‘showposts=5’) shows only 1 post?
- is there a way to show the the post title after the image?
- Should I use posts or pages in this scenario?
- Why is querying posts messing up my pages?
- How can I make a post that belongs to a category or have specific tags, display different from the other single posts?
- Display all posts that were published before full post on single.php
- Category Foreach keeps looping?
- Using permalinks, category slugs, and tag slugs
- “more” tag doesn’t appear when browsing category achives or search
- Print all the tags from a custom post type Please
- Display tag image in post using Taxonomy Images plugin index.php
- Blog post per page setting conflicting with custom WP_Query?
- How to exclude latest x posts from a paginated query?
- Two loops, one AJAX loop, exclude posts in first loop from second loop, loops are in different files
- Add multiple tags to multiple posts
- Help with Taxonomies
- Random ajax load only works with posts_per_page set to -1
- WP_Query: Mixing category__in and tag__in together
- Display an author’s posts on his own author page
- Multi row post list
- How to add tags (custom taxonomy) to post class css?
- How can I hide tags on a child-category page, if that tag has not been used?
- posts_per_page option limits the number of Gallery items
- How to make multiple sections in home pulling posts category wise?
- wp_posts table: safely remove unused columns to save database storage
- Query Posts by Custom Field
- How to get Tags with specific post id
- Order posts alphabetically: how to set order=asc in mysql query?
- How to order posts in an arbitrary order?
- Display Posts on Custom Page
- How to get posts from a current post’s month?
- How to get a post’s content? [closed]