01606 353550
Sales & Service Support
/**
* Default catalog sorting: Price (high to low) on shop & product category pages.
*/
add_filter( 'woocommerce_default_catalog_orderby', 'lam_default_orderby_price_desc' );
function lam_default_orderby_price_desc( $sort_by ) {
// Don’t interfere with admin screens
if ( is_admin() ) {
return $sort_by;
}
// For main shop page and any product tax archive (categories, tags, etc.)
if ( is_shop() || is_product_taxonomy() ) {
return 'price-desc'; // WooCommerce key for "Sort by price: high to low"
}
return $sort_by;
}
Reviews
There are no reviews yet.