apply_filters( 'manage_users_custom_column', string $output, string $column_name, int $user_id )
- Since
- 2.8.0
Filters the display output of custom columns in the Users list table.
Compatibility
- WordPress
- since 2.8.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$outputstring- Custom column output. Default empty.
$column_namestring- Column name.
$user_idint- ID of the currently-listed user.
Where this hook fires · 2
wp-admin/includes/class-wp-ms-users-list-table.php:470WP_MS_Users_List_Table::column_default()wp-admin/includes/class-wp-users-list-table.php:625WP_Users_List_Table::single_row()
Source code
* @since 2.8.0 * * @param string $output Custom column output. Default empty. * @param string $column_name Column name. * @param int $user_id ID of the currently-listed user. */ $row .= apply_filters( 'manage_users_custom_column', '', $column_name, $user_object->ID ); } if ( $primary === $column_name ) { $row .= $this->row_actions( $actions ); } $row .= '</td>';Changelog
Introduced in 2.8.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.