Advertisement
arsh999cg

Product Order by

Jan 19th, 2023
1,063
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2. //  Order Posts using pre_get_posts in code snippet
  3. add_action('pre_get_posts', 'arsh_order_by');
  4.  
  5. function arsh_order_by( $query ) {
  6.     if ( ! is_admin() && $query->is_main_query() && is_post_type_archive( 'product' ) || is_tax( 'product_category' ) ) {
  7.         $query->set( 'order', 'ASC');
  8.         $query->set( 'orderby', 'menu_order');
  9.     }
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement