Skip to content

Instantly share code, notes, and snippets.

@jentheo
Created May 18, 2017 23:12
Show Gist options
  • Save jentheo/74a2b3590131167ec7b529410cce1977 to your computer and use it in GitHub Desktop.
Save jentheo/74a2b3590131167ec7b529410cce1977 to your computer and use it in GitHub Desktop.
Remove iCal feed link from <head>
function tribe_remove_ical_feed_link() {
if ( function_exists( 'tribe' ) ) {
remove_action( 'wp_head', array( tribe( 'tec.iCal' ), 'set_feed_link' ), 2 );
}
}
add_action( 'init', 'tribe_remove_ical_feed_link', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment