Skip to content

Instantly share code, notes, and snippets.

@liviucerchez
Created July 27, 2020 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liviucerchez/3260695ef3f6b10381097705ed9c0a38 to your computer and use it in GitHub Desktop.
Save liviucerchez/3260695ef3f6b10381097705ed9c0a38 to your computer and use it in GitHub Desktop.
Castilo - remove RSS feed
// append this code in the functions.php file of the child theme
function castilo_child_remove_rss() {
remove_theme_support( 'podcast-rss-feed' );
}
add_action( 'after_setup_theme', 'castilo_child_remove_rss', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment