Your cart is currently empty!
Admin users custom column sortable
Adds a column to the admin Users table displaying the value of a user metadata field.
add_filter( 'manage_users_columns', function( $array ) {
$array['type_of_business'] = 'Business type';
return $array;
} );
add_filter( 'manage_users_custom_column', function( $output, $column_name, $user_id ) {
switch( $column_name ) {
case 'type_of_business':
$output = get_user_meta( $user_id, 'type_of_business', true );
break;
}
return $output;
}, 10, 3 );
add_filter( 'manage_users_sortable_columns', function( $columns ) {
$columns['type_of_business'] = 'type_of_business';
return $columns;
} );
add_action( 'pre_get_users', function ( $wp_users_query ) {
if(
isset( $wp_users_query->query_vars['orderby'] )
&& ( 'type_of_business' === $wp_users_query->query_vars['orderby'] )
) {
$wp_users_query->query_vars['meta_key'] = 'type_of_business';
$wp_users_query->query_vars['orderby'] = 'meta_value';
}
} );
Instructions for Admin users custom column sortable
- Log into a staging or locally hosted clone of your site.
- Install and activate Code Snippets plugin.
- WP Admin > Snippets > Add New
- Copy and paste the code from the section above.
- Check to ensure formatting came over properly.
- Customize the code as desired.
- Add a meaningful title.
- Select whether to run on front-end or back-end (or both).
- Click “Save and Activate”.
- Test your site to ensure it works.
- Disable if any problems, or recover.
- Repeat for live environment.
Need help modifying Admin users custom column sortable?
Contact me. I can help with fitting projects or refer to my partner.
License
All code snippets are licensed GPLv2 (or later) matching WordPress licensing.
Except when otherwise stated in writing the copyright holders and/or other parties provide the program as-is without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose.
Disclaimer of warranty