Advertisement
BakerMan

eShop / TEC joins issue

Dec 4th, 2013
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'stop_tec_joins_on_eshop_search', 100 );
  2.  
  3. function stop_tec_joins_on_eshop_search() {
  4.     if ( ! isset($_GET['eshopsearch']) ) return;
  5.     remove_filter( 'posts_join', array( TribeEventsQuery, 'posts_join' ), 10, 2 );
  6.     remove_filter( 'posts_join', array( TribeEventsQuery, 'posts_join_orderby' ), 10, 2 );
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement