Created
September 13, 2017 07:03
-
-
Save wpflippercode/13ef5cc21d797035490b93b430ae8074 to your computer and use it in GitHub Desktop.
Sort Locations Listing by City in Ascending & Decending Order
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
// Sort by city. | |
add_filter('wpgmp_sorting','wpgmp_sorting_location_field',2,2); | |
function wpgmp_sorting_location_field($sorting,$map) { | |
$sorting['city__asc'] ="City A-Z"; | |
$sorting['city__desc'] ="City Z-A"; | |
return $sorting; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment