Skip to main content
Login Join
Snippet · PHP

Disable RSS Feeds

Shared by Darshit Rajyaguru · May 22, 2026 · @do_feed

1 copy
44 views
3 upvotes
Back to Snippets

Turns off all RSS feeds.

function dr_disable_feeds() {
    wp_die( 'RSS feeds are disabled.' );
}

add_action( 'do_feed', 'dr_disable_feeds', 1 );
add_action( 'do_feed_rdf', 'dr_disable_feeds', 1 );
add_action( 'do_feed_rss', 'dr_disable_feeds', 1 );
add_action( 'do_feed_rss2', 'dr_disable_feeds', 1 );
add_action( 'do_feed_atom', 'dr_disable_feeds', 1 );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments