manage_users_custom_column WordPress Filter Hook
The manage_users_custom_column hook is used to add custom columns to the "Users" screen in the WordPress admin area. This hook is triggered when the custom columns are added to the "Users" screen.
apply_filters( 'manage_users_custom_column', string $output , string $column_name , int $user_id ) #
Filters the display output of custom columns in the Users list table.
Parameters
- $output
(string)Custom column output. Default empty.
- $column_name
(string)Column name.
- $user_id
(int)ID of the currently-listed user.
Source
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |