Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save yuriinalivaiko/4feaa1ee75d7bbbfde7949e03d56e7c9 to your computer and use it in GitHub Desktop.

Select an option

Save yuriinalivaiko/4feaa1ee75d7bbbfde7949e03d56e7c9 to your computer and use it in GitHub Desktop.
Ultimate Member customization. Code snippets for the member directory.
<?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