manage_(screen_id)_custom_column action-hook . WP 5.6.0
Fires for each custom column in the Application Passwords list table.
Custom columns are registered using the {@see 'manage_application-passwords-user_columns'} filter.
Usage
add_action( 'manage_(screen_id)_custom_column', 'action_function_name_3323', 10, 2 ); function action_function_name_3323( $column_name, $item ){ // action... }
- $column_name(string)
- Name of the custom column.
- $item(array)
- The application password item.
Changelog
Since 5.6.0 | Introduced. |
Where the hook is called
manage_(screen_id)_custom_column
wp-admin/includes/class-wp-application-passwords-list-table.php 144
do_action( "manage_{$this->screen->id}_custom_column", $column_name, $item );