manage_(screen_id)_custom_column_js_template хук-событие . WP 5.6.0
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.
Использование
add_action( 'manage_(screen_id)_custom_column_js_template', 'action_function_name_3959' ); function action_function_name_3959( $column_name ){ // action... }
- $column_name(строка)
- Name of the custom column.
Список изменений
С версии 5.6.0 | Введена. |
Где вызывается хук
manage_(screen_id)_custom_column_js_template
wp-admin/includes/class-wp-application-passwords-list-table.php 254
do_action( "manage_{$this->screen->id}_custom_column_js_template", $column_name );