Sort role column on Users admin page
-
Hello, I tried to sort the role column on Users admin page but it is not working. It seems to be sorting based on username. Is it because there are UM roles and default WP roles to select from when creating users?
I have tried this code but it’s not working:
add_filter( 'manage_users_sortable_columns', 'register_sortable_columns_custom', 10, 1 ); function register_sortable_columns_custom( $columns ) { $columns['role'] = 'role'; return $columns; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Sort role column on Users admin page’ is closed to new replies.