Categories

Thursday, April 25, 2024
#919814419350 therichposts@gmail.com
Wordpress HooksWordpress Tricks

How to disable wordpress feed with wordpress add action hooks?

How to add custom meta title and meta description in Wordpress?

disable wordpress feed with wordpress add action hooks

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

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.