Created
February 17, 2025 10:25
-
-
Save propertyhive/0b41a63cfa4dea5275a8fda31c52cea4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'elementor/query/propertiesorderedbyprice', 'elementor_query_ordered_by_price' ); | |
function elementor_query_ordered_by_price( $query ) | |
{ | |
$query->set('orderby', 'meta_value_num'); | |
$query->set('order', 'DESC'); | |
$query->set('meta_key', '_price_actual'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment