Archived topic
Unnecessary rss feed on post.
1 reply · Started by Samuel on February 13, 2023
How can i remove the /feed/ after my post?
Assuming my domain.com/feed/ (this is normal)
but now recently I'm seeing domain.com/post-title/feed.
Please refer to this : bit.ly/3K3fOzH
How can I remove it? i still want to keep the domain.com/feed
Hi there,
those would be created by the feed_links_extra function:
https://developer.wordpress.org/reference/functions/feed_links_extra/
You can simply tell WP to not include any of the extra links listed there with one PHP Snippet to unhook them:
remove_action( 'wp_head', 'feed_links_extra', 3 );