On this page
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
$outputstring-
Custom column output. Default empty.
$column_namestring-
Column name.
$user_idint-
ID of the currently-listed user.
Source
File: wp-admin/includes/class-wp-users-list-table.php. View all references
$row .= apply_filters( 'manage_users_custom_column', '', $column_name, $user_object->ID );
Related
Used By
| Used By | Description |
|---|---|
| WP_MS_Users_List_Table::column_default() wp-admin/includes/class-wp-ms-users-list-table.php | Handles the default column output. |
| WP_Users_List_Table::single_row() wp-admin/includes/class-wp-users-list-table.php | Generate HTML for a single row on the users.php admin panel. |
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/manage_users_custom_column