Created
July 9, 2013 18:26
-
-
Save jazbek/5959855 to your computer and use it in GitHub Desktop.
Fix Canvas theme temporarily
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
<?php | |
add_action( 'init', 'tribe_events_wootheme_compatibility' ); | |
function tribe_events_wootheme_compatibility() { | |
if ( ! is_home() ) { | |
remove_filter( 'pre_get_posts', 'woo_exclude_categories_homepage', 10 ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment