Created
May 17, 2025 13:24
-
-
Save yuriinalivaiko/4feaa1ee75d7bbbfde7949e03d56e7c9 to your computer and use it in GitHub Desktop.
Ultimate Member customization. Code snippets for the member directory.
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
| <?php | |
| // Sort member directory filter options by values. | |
| add_filter( 'um_member_directory_filter_select_options_sorted', function( $options, $attrs ) { | |
| asort( $options ); | |
| return $options; | |
| }, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment