Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'wc_shop_order_status_backwards_compatibility' );
  2. function wc_shop_order_status_backwards_compatibility( $q ) {
  3. if ( $q->is_main_query() ) {
  4. return;
  5. }
  6. //...and it goes on
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement