Hello, welcome to therichpost.com. In this post, I will tell you How to disable wordpress feed with wordpress add action hooks? WordPress is the best cms. I personally like it very much and my mostly posts are related to wordpress. WordPress hooks(add_action, add_filter) give us the power to edit or change the code without interruption into the files and this is the best thing about wordpress.
Every can share our wordpress posts with wordpress feeds and we can hide this feeds with wordpress hook.
Please check the feed page after add wordpress add action hook:
Here is the complete working code to disable wordpress feed and you need to add this code in your theme’s functions.php file:
function wpb_disable_feed() {
wp_die( __(‘Please contact therichposts@gmail.com’) );
}
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);
There are so many tricks in wordpress and i will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com
Recent Comments