How can I delete Web Stories Feed link from header?
<link rel=”alternate” type=”application/rss+xml” title=”Блог MAUDAU » Stories Feed” href=”https://blog.maudau.com.ua/web-stories/feed/”>
Function removing RSS deleting all WP rss but doesn’t work for Web Stories:
function remove_header_info() {
remove_action('wp_head', 'feed_links', 2); //removes feeds
remove_action('wp_head', 'feed_links_extra', 3); //removes comment feed links
}
add_action('init', 'remove_header_info');