Skip to content

Instantly share code, notes, and snippets.

@rniswonger
Created July 16, 2025 00:05
Show Gist options
  • Save rniswonger/4af73f3359dd68898e7b3b74d6db9299 to your computer and use it in GitHub Desktop.
Save rniswonger/4af73f3359dd68898e7b3b74d6db9299 to your computer and use it in GitHub Desktop.
WordPress: Sort ACF Location Rule values alphabetically to make them easier to find when defining a Field Group
<?php
/**
* Sort ACF location rules values alphabetically
*/
add_filter(
'acf/location/rule_values',
function ( $values, $rule ) {
if ( is_array( $values ) ) {
asort( $values, SORT_STRING | SORT_FLAG_CASE );
}
return $values;
},
10,
2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment