Advertisement
Fany_VanDaal

Zobrazení nejprve produkty skladem, poté neskladem

Nov 4th, 2023
1,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. add_action('woocommerce_product_query', 'custom_product_query');
  2. function custom_product_query($q)
  3. {
  4.     if (!$q->is_main_query()) return;
  5.     $q->set('meta_query', array(
  6.         'relation' => 'OR',
  7.         array(
  8.             'key' => '_stock_status',
  9.             'value' => 'instock',
  10.             'compare' => '=',
  11.         ),
  12.         array(
  13.             'key' => '_stock_status',
  14.             'value' => 'outofstock',
  15.             'compare' => '=',
  16.         ),
  17.     ));
  18.     $q->set('orderby', 'meta_value');
  19.     $q->set('order', 'ASC');
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement