Skip to content

Instantly share code, notes, and snippets.

@herbie4
Created March 12, 2024 15:45
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 herbie4/fc0ea44c4ed4d0451556f37df6565f33 to your computer and use it in GitHub Desktop.
Save herbie4/fc0ea44c4ed4d0451556f37df6565f33 to your computer and use it in GitHub Desktop.
wp-downloadmanager: remove download rss feed
<?php
// add to child theme functions.php
// remove download rss feed
// wp-downloadmanager - lester chan
add_action( 'wp_head', 'hhdev_remove_action', 5 );
function hhdev_remove_action() {
remove_action('wp_head', 'download_rss_link');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment