Advertisement
lorro

WooCommerce - Remove an option from the catalog sorting dropdown menu

Jan 9th, 2022
1,061
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.   // WooCommerce - Remove an option from the catalog sorting dropdown
  3.   // Options: menu_order, popularity, rating, date, price, price-desc
  4.   add_filter( "woocommerce_catalog_orderby", "custom_catalog_orderby", 20 );
  5.   function custom_catalog_orderby( $orderby ) {
  6.     unset( $orderby["date"] );
  7.     return $orderby;
  8.   } // end function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement