Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 17, 2025 10:25
Show Gist options
  • Save propertyhive/0b41a63cfa4dea5275a8fda31c52cea4 to your computer and use it in GitHub Desktop.
Save propertyhive/0b41a63cfa4dea5275a8fda31c52cea4 to your computer and use it in GitHub Desktop.
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