Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 13, 2017 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpflippercode/fb1330ee49929a0b6e16a31358923346 to your computer and use it in GitHub Desktop.
Save wpflippercode/fb1330ee49929a0b6e16a31358923346 to your computer and use it in GitHub Desktop.
Sort Posts Listing below google maps using custom field
// 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