Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. /* Tribe, change tax query relation to AND instead of OR */
  2. function tribe_list_widget_tax_query_relation ( $args ) {
  3.  
  4.     // bail if no relation is no tax query
  5.     if ( !isset( $args['tax_query'] ) ) return $args;
  6.  
  7.     $args['tax_query']['relation'] = 'AND';
  8.  
  9.     return $args;
  10. }
  11. add_filter ( 'tribe_events_list_widget_query_args', 'tribe_list_widget_tax_query_relation', 100 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement