Created
March 12, 2024 15:45
-
-
Save herbie4/fc0ea44c4ed4d0451556f37df6565f33 to your computer and use it in GitHub Desktop.
wp-downloadmanager: remove download rss feed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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