apply_filters( 'manage_users-network_custom_column', string $output, string $column_name, int $user_id )
- Since
- 6.8.0
Filters the display output of custom columns in the Network Users list table.
Compatibility
- WordPress
- since 6.8.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in 4 of the 5 tracked releases, added in 6.8.0.
Parameters
$outputstring- Custom column output. Default empty.
$column_namestring- Name of the custom column.
$user_idint- ID of the currently-listed user.
Where this hook fires · 1
wp-admin/includes/class-wp-ms-users-list-table.php:481WP_MS_Users_List_Table::column_default()
Source code
* @since 6.8.0 * * @param string $output Custom column output. Default empty. * @param string $column_name Name of the custom column. * @param int $user_id ID of the currently-listed user. */ echo apply_filters( 'manage_users-network_custom_column', $column_output, $column_name, $user->ID ); } /** * Generates the list table rows. * * @since 3.1.0Changelog
Introduced in 6.8.0. Unchanged from 6.8.8 through 7.1.0.
Signature, return type and hooks compared across 4 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 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.