Created
September 13, 2017 07:05
-
-
Save wpflippercode/fb1330ee49929a0b6e16a31358923346 to your computer and use it in GitHub Desktop.
Sort Posts Listing below google maps using custom field
This file contains hidden or 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
// Sort by custom field. e.g "salary". | |
add_filter('wpgmp_sorting','wpgmp_sorting_custom_field',1,2); | |
function wpgmp_sorting_custom_field($sorting,$map) { | |
$sorting['%salary%__asc__num'] ="Salary Low-High"; | |
$sorting['%salary%__desc__num'] ="Salary High-Low"; | |
return $sorting; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment