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.


Top ↑

Source

File: wp-admin/includes/class-wp-users-list-table.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
2.8.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.