Archived topic
Block/remove all RSS feeds
6 replies · Started by Alex on September 10, 2020
Hi guys,
How can I remove all feeds from a site?
I've seen couple of plugins but they don't seem to work anymore and are not being updated.
Thank you
Hi there,
maybe the code method provided here will do the job:
https://www.wpbeginner.com/wp-tutorials/how-to-disable-rss-feeds-in-wordpress/
Works like a charm!
Thank you David
Glad to hear that!
That plugin, and code methods I've seen, redirect visitors using feed links. They don't remove all the feed links from the header. Are those put in there by the theme, and if so, is there a way to kill them?
Actually I found a solution on another thread here. Apparently it's through wordpress, not GeneratePress. This seems to work:
remove_action('wp_head', 'feed_links', 2); // remove rss feed links
remove_action('wp_head', 'feed_links_extra', 3); // removes all extra rss feed links
Glad to hear and thanks for sharing your solution!