Guest User

Untitled

a guest
Dec 18th, 2013
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. add_action('pre_get_posts','WPECfix', 10); // hook in just before wpsc_generate_product_query will run
  2. function WPECfix(){
  3.         if ( $priority = has_action('pre_get_posts', 'wpsc_generate_product_query') ) // see if wpsc_generate_product_query is currently hooked in
  4.                 add_action( 'pre_get_posts', '__return_null', $priority ); // and give it a companion callback to avoid $wp_filter corruption
  5. }
Advertisement
Add Comment
Please, Sign In to add comment