Advertisement
Socialking

Untitled

Mar 28th, 2022
1,147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter('woocommerce_catalog_orderby', 'dotspice_change_sorting_options_order', 5);
  4.  
  5. function dotspice_change_sorting_options_order($options)
  6. {
  7.  
  8.       $options = array(
  9.             'menu_order' => __('Default sorting', 'woocommerce'),
  10.             'price'      => __('Sort by price: low to high', 'woocommerce'),
  11.             'date'       => __('Sort by latest', 'woocommerce'),
  12.             'popularity' => __('Sort by popularity', 'woocommerce'),
  13.             'rating'     => 'Sort by average rating',
  14.             'price-desc' => __('Sort by price: high to low', 'woocommerce'),
  15.       );
  16.  
  17.       return $options;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement