manage_(screen_id)_custom_column_js_template
Fires in the JavaScript row template 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_js_template', 'wp_kama_manage_screen_id_custom_column_js_template_action' ); /** * Function for `manage_(screen_id)_custom_column_js_template` action-hook. * * @param string $column_name Name of the custom column. * * @return void */ function wp_kama_manage_screen_id_custom_column_js_template_action( $column_name ){ // action... }
- $column_name(string)
- Name of the custom column.
Changelog
Since 5.6.0 | Introduced. |
Where the hook is called
manage_(screen_id)_custom_column_js_template
wp-admin/includes/class-wp-application-passwords-list-table.php 251
do_action( "manage_{$this->screen->id}_custom_column_js_template", $column_name );