Name Update Time
Netflix September 6, 2024 9:17 am
Disney+ September 6, 2024 10:56 am
Max September 6, 2024 11:15 am
ChatGPT 4 September 4, 2024 4:23 pm
Spotify September 6, 2024 2:30 pm
Prime Video September 6, 2024 2:55 pm
Codecademy September 6, 2024 2:40 pm
Grammarly September 3, 2024 1:46 pm
Canva Pro September 5, 2024 2:52 pm
Udemy Premium Cookies September 2, 2024 2:53 pm

WordPress completely disables the RSS function

If you think RSS is useless, you can also disable it directly by adding the following code to the theme functions.php function:

function itsme_disable_feed() {
wp_die( __( ‘No feed available, please visit the <a href=”‘.%20esc_url(%20home_url(%20’/’%20)%20)%20.'”>homepage</a>!’ ) );
}
add_action(‘do_feed’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_rdf’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_rss’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_rss2’, ‘itsme_disable_feed’, 1);
add_action(‘do_feed_atom’, ‘itsme_disable_feed’, 1);

add_action(‘do_feed_rss2_comments’, ‘itsme_disable_feed’, 1);

add_action(‘do_feed_atom_comments’, ‘itsme_disable_feed’, 1);

// Remove the RSS code of the web

page remove_action( ‘wp_head’, ‘feed_links_extra’, 3 );

remove_action( ‘wp_head’, ‘feed_links ‘, 2 );

Tag: