Skip to content

Instantly share code, notes, and snippets.

@elimn
Created January 24, 2017 04:52
Show Gist options
  • Save elimn/2aa55ee8e6a926d27cf6e693bc811217 to your computer and use it in GitHub Desktop.
Save elimn/2aa55ee8e6a926d27cf6e693bc811217 to your computer and use it in GitHub Desktop.
MT | TEC | Remove link to a recurring event's RSS feed from the <head>
<?php
/**
* Removes link to a recurring event's RSS feed from the <head>
*/
function tribe_remove_recurring_feed() {
if ( tribe_is_recurring_event() ) {
remove_action( 'wp_head', 'feed_links_extra', 3 );
}
}
add_action( 'template_redirect', 'tribe_remove_recurring_feed' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment