Last active
October 13, 2017 15:39
-
-
Save Christian-Roth/05ebfa3747648ff54c3c6af08a4fe57c to your computer and use it in GitHub Desktop.
The Events Calendar – Remove the iCal and Google cal links from the archive views
This file contains 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 | |
/** | |
* Removes the iCal and Google cal links from archive pages | |
*/ | |
function tribe_remove_calendar_export_links() { | |
if ( function_exists( 'tribe' ) ) { | |
remove_action( 'tribe_events_after_footer', array( tribe( 'tec.iCal' ), 'maybe_add_link' ) ); | |
} | |
} | |
add_action( 'init', 'tribe_remove_calendar_export_links' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment