Advertisement
helgatheviki

pre_Get_posts

Jun 19th, 2013
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. add_action('pre_get_posts', 'kia_get_all_products', 99 );
  2.  
  3. function kia_get_all_products() {
  4.  
  5.     if ( is_admin() ) return;
  6.  
  7.     if( is_main_query() && ( is_post_type_archive('product') || ( is_tax() && in_array(get_query_var('taxonomy'), get_object_taxonomies('product') )) ) ) {
  8.        set_query_var('posts_per_page', 14 );
  9.        set_query_var('orderby', 'menu_order' );
  10.         set_query_var('order', 'ASC' );
  11.         echo 'is working';
  12.     }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement