I have a Wordpress powered site and I would like to know how to disable all category based RSS feeds with PHP or even mod-rewrite if possible.
Thanks
|
I have a Wordpress powered site and I would like to know how to disable all category based RSS feeds with PHP or even mod-rewrite if possible. Thanks |
|||
|
|
|
I solved it:
function check_the_feed() {
if ( is_category() )
wp_die( __('No feed available, please visit our homepage!') );
}
add_action('do_feed', 'check_the_feed', 1);
add_action('do_feed_rdf', 'check_the_feed', 1);
add_action('do_feed_rss', 'check_the_feed', 1);
add_action('do_feed_rss2', 'check_the_feed', 1);
add_action('do_feed_atom', 'check_the_feed', 1);
|
||||
|
|
|
|
|||
|