Created
October 27, 2014 18:42
-
-
Save jesseeproductions/2df4c4ee76c3c673372f to your computer and use it in GitHub Desktop.
Remove Genesis Breadcrumbs from the Event Calendar View Pages
This file contains hidden or 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
/* | |
* Remove Genesis Breadcrumbs from the Event Calendar View Pages | |
* The Events Calendar @3.8 | |
* Genesis @2.1.2 | |
*/ | |
add_action( 'genesis_before', 'tribe_remove_genesis_breadcrumbs' ); | |
function tribe_remove_genesis_breadcrumbs() { | |
if( tribe_is_upcoming() || tribe_is_past() || tribe_is_map() || tribe_is_photo() || tribe_is_month() || tribe_is_week() || tribe_is_day() || tribe_is_photo() ) { | |
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment