Genx Blog

A Japanese web3 beatmaker. I make music and art.

How to stop RSS Feed in WordPress

tehangat studio 63KXsPPy0cA unsplash scaled
Genx Avatar
Share This:

Put the following code in functions.php.

function wpb_disable_feed() {
wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') );
}

add_action('do_feed', 'wpb_disable_feed', 1);
add_action('do_feed_rdf', 'wpb_disable_feed', 1);
add_action('do_feed_rss', 'wpb_disable_feed', 1);
add_action('do_feed_rss2', 'wpb_disable_feed', 1);
add_action('do_feed_atom', 'wpb_disable_feed', 1);
add_action('do_feed_rss2_comments', 'wpb_disable_feed', 1);
add_action('do_feed_atom_comments', 'wpb_disable_feed', 1);

—

by

in

Last Updated:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

8 − 7 =