The Events Calendar – Remove the iCal and Google cal links from the archive views
<?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