Set the default sort order for properties
Set the default sort order for properties
If you want to change the default sort order for the property display you can add the following code snippet to your WordPress Theme functions.php file
function my_default_sort( $example ) {
return ‘price-asc’; //can be price-asc, price-desc,latest
}
add_filter( ‘wppf_query_wppf_orderby’,’my_default_sort’);