Introduction: Why De-Index Tag Pages?
how to de-index tag pages in wordpress
Tag pages in WordPress automatically get created when you assign tags to your posts. While tags help in organizing content for users, they often:
- Causes duplicate content issues
- Add thin or low-value pages to Google
- Dilute your crawl budget
For better SEO, it’s recommended to de-index tag pages so that Google focuses only on your high-quality content.
Should You Noindex or Delete Tag Pages?
You don’t need to delete them — they can still help with internal linking and user navigation.
The best practice: Noindex tag pages so Google won’t show them in search results, but users can still use them on your site.
How to De-Index Tag Pages in WordPress (3 Easy Methods)
Method 1: Use Rank Math SEO Plugin (Recommended)
Rank Math makes it easy to noindex tag pages without coding.
Step-by-Step:
- Install and activate the Rank Math SEO plugin
- Go to:
WordPress Dashboard > Rank Math > Titles & Meta > Tags - Under Meta Robots, check the box:
Noindex - Save changes
This tells search engines not to index any tag archive pages.
Method 2: Using the Yoast SEO Plugin
If you’re using Yoast SEO, follow these steps:
- Install & activate Yoast SEO
- Go to:
SEO > Search Appearance > Taxonomies - Scroll to Tags
- Set “Show Tags in search results?” to No
- Save changes
This automatically adds a noindex meta tag to all tag pages.
Method 3: Manually Add Code to functions.php
If you don’t use SEO plugins, add this code to your theme’s functions.php file:
function noindex_tag_pages() {
if (is_tag()) {
echo '<meta name="robots" content="noindex, follow">';
}
}
add_action('wp_head', 'noindex_tag_pages');
This will add the noindex tag to all tag archive pages.
Caution: Always back up your site before editing core theme files.
Bonus: Check If Your Tag Pages Are Already Indexed
Use Google Search to check:
If you see any tag pages indexed, wait a few days after noindexing and request deindexing via Google Search Console. Optional Step:
Go to Search Console > Removals > New Request
→ Submit the URL(s) of indexed tag pages for faster removal.
Why This Improves Your SEO
By de-indexing tag pages, you:
- Reduce crawl waste
- Prevent duplicate or thin content
- Focus Google’s attention on your main content
- Improve overall site quality score
This can lead to better rankings for your core posts and pages.
FAQs
Q: Will noindexing tags affect internal SEO?
A: No. Your internal structure remains intact. Only search engines will skip indexing the tag archive pages.
Q: Should I noindex category pages too?
A: Only if they offer no unique value. Some category pages are useful for SEO if designed well.
Q: How long does it take for Google to de-index tag pages?
A: Typically 1–3 weeks. Use Google Search Console for faster processing.