function disable_all_feeds() { Wp_die ('This website does not provide feeds, please go directly to www.laozuo. org '); } add_action('do_feed', 'disable_all_feeds', 1); add_action('do_feed_rdf', 'disable_all_feeds', 1); add_action('do_feed_rss', 'disable_all_feeds', 1); add_action('do_feed_rss2', 'disable_all_feeds', 1); add_action('do_feed_atom', 'disable_all_feeds', 1);
//Forbid RSS laozuo.org add_action( 'wp_head', 'laozuoorg_wp_head', 1 ); function laozuoorg_wp_head() { remove_action( 'wp_head', 'feed_links', 2 ); remove_action( 'wp_head', 'feed_links_extra', 3 ); } foreach( array( 'rdf', 'rss', 'rss2', 'atom' ) as $feed ) { add_action( 'do_feed_' . $feed, 'banzhuti_remove_feeds', 1 ); } unset( $feed ); //Redirect to home page when do_feed action is executed function banzhuti_remove_feeds() { wp_redirect( home_url(), 302 ); exit(); } //Delete the feed redirection rule add_action( 'init', 'banzhuti_kill_feed_endpoint', 99 ); function banzhuti_kill_feed_endpoint() { global $wp_rewrite; $wp_rewrite->feeds = array(); //After running once, remember to delete the following code flush_rewrite_rules(); }