-
Hi there
Im rebuilding my site as it is giving me allot of problems and i would like to know what do i need to do to stop my site from creating these feed pages as per my loom video. Id also like to know how do i keep my site from creating tag pages as per my loom video
Thanks
-
Hello,
I’m sorry to hear that you’re facing issues with your site. To stop your site from creating feed pages and tag pages, you can follow these steps:
To Stop Feed Pages:
- Go to WP Dashboard → Rank Math SEO → Titles & Meta → Global Meta.
- Look for the option to Noindex Empty Category and Tag Archives.
- Enable this option to prevent empty category and tag pages from being indexed.
To Prevent Tag Pages:
- Ensure that your tag pages have enough content to avoid being treated as soft 404 errors by Google.
- Add unique, well-written content to your tag pages.
- Avoid duplicating content from other pages on your site.
If you have a lot of tag pages with thin or duplicate content, consider no-indexing them to improve your site’s overall quality.
I hope these steps help resolve the issues you’re facing with feed and tag pages on your site. If you have any further questions or need assistance, feel free to ask.
Thank you for reaching out!
Sources:
How to Fix the Submitted URL Seems to Be a “Soft 404” Error » Rank Math
How to Fix ‘Page Indexed Without Content’ Issue in Google Search Console » Rank Math
Solving Redirection Issues Using Rank Math SEO Plugin » Rank MathThank you for giving me the instructions on the tag pages
Id also like to know how to prevent feed pages from being recreated
Also where can i find documentation on importing my rankmath settings from another siteHello,
Thank you for contacting Rank Math support.
You have marked this ticket as resolved so we’re unable to see the loom videos you added. If you still need help with this, please reshare the loom video.
Regarding the guide to export and import your Rank Math settings, you can find it here: https://rankmath.com/kb/import-export-settings/
Thank you for your patience and cooperation
Hi there , im not sure why i marked to as resolved sorry about that
So the main thing i would like clarity on is the Feed pages – please see my loom video – the part about tags have been resolved , i would like to know how do i keep my website from producing these feed links as per video
https://www.loom.com/share/fe4da53140ff4c0c9ebfd91c0406797fHello,
To disable your feeds, add the following code to your website:
/** * Display a custom message instead of the RSS Feeds. * * @return void */ function rm_snippet_disable_feed() { wp_die( sprintf( // Translators: Placeholders for the homepage link. esc_html__( 'No feed available, please visit our %1$shomepage%2$s!' ), ' <a href="' . esc_url( home_url( '/' ) ) . '">', '</a>' ) ); } // Replace all feeds with the message above. add_action( 'do_feed_rdf', 'rm_snippet_disable_feed', 1 ); add_action( 'do_feed_rss', 'rm_snippet_disable_feed', 1 ); add_action( 'do_feed_rss2', 'rm_snippet_disable_feed', 1 ); add_action( 'do_feed_atom', 'rm_snippet_disable_feed', 1 ); add_action( 'do_feed_rss2_comments', 'rm_snippet_disable_feed', 1 ); add_action( 'do_feed_atom_comments', 'rm_snippet_disable_feed', 1 ); // Remove links to feed from the header. remove_action( 'wp_head', 'feed_links_extra', 3 ); remove_action( 'wp_head', 'feed_links', 2 );
You can add the code to your site using any of the methods here.
We hope this helps you resolve the issue. Don’t hesitate to contact us again with any other questions or concerns regarding Rank Math. We are always happy to help.
Thank you for choosing Rank Math!
Thanks for getting back to me , will this also remove existing feed pages i have on a site or how can i remove them?
Hello,
Yes, the code will also work for existing pages as well. Let us know if you need help with anything else.
Thank you for your patience and cooperation
Thank you for this
Hello,
We are glad that helped.
Please feel free to reach out to us again in case you need any other assistance.
We are here to help.
Thank you.
The ticket ‘Feed pages and tag pages’ is closed to new replies.