Changeset 59878
- Timestamp:
- 02/27/2025 12:07:07 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r58745 r59878 468 468 469 469 /** This filter is documented in wp-admin/includes/class-wp-users-list-table.php */ 470 echo apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID ); 470 $column_output = apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID ); 471 472 /** 473 * Filters the display output of custom columns in the Network Users list table. 474 * 475 * @since 6.8.0 476 * 477 * @param string $output Custom column output. Default empty. 478 * @param string $column_name Name of the custom column. 479 * @param int $user_id ID of the currently-listed user. 480 */ 481 echo apply_filters( 'manage_users-network_custom_column', $column_output, $column_name, $user->ID ); 471 482 } 472 483
Note: See TracChangeset
for help on using the changeset viewer.