Skip to content

Instantly share code, notes, and snippets.

@che-wf
Created June 14, 2016 19:01
Show Gist options
  • Select an option

  • Save che-wf/36b5b5dc0af14b836c77b631d1806f76 to your computer and use it in GitHub Desktop.

Select an option

Save che-wf/36b5b5dc0af14b836c77b631d1806f76 to your computer and use it in GitHub Desktop.
Kill RSS Feed on Staging for WordPress
...
/**
** Disables RSS for staging
**/
function disable_rss() {
return null;
}
if($_SERVER["HTTP_HOST"] == "[staging server address]"){
add_filter('default_feed', 'disable_rss');
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment