mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
7 lines
254 B
Text
7 lines
254 B
Text
add_filter( 'aws_products_order_by', 'my_aws_products_order_by', 10, 2 );
|
|
function my_aws_products_order_by( $order_by, $query ) {
|
|
if ( $query->query_vars['orderby'] === 'meta_value_num' ) {
|
|
$order_by = 'price';
|
|
}
|
|
return $order_by;
|
|
}
|