manage_themes_custom_column
Fires inside each custom column of the Multisite themes list table.
Description
do_action( 'manage_themes_custom_column', (string) $column_name, (string) $stylesheet, (WP_Theme) $theme );
Parameters (3)
- 0. $column_name (string)
- Name of the column.
- 1. $stylesheet (string)
- Directory name of the theme.
- 2. $theme (WP_Theme)
- Current
WP_Theme
object.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme );
- The following example is for adding a hook callback.
- // define the manage_themes_custom_column callback
- function action_manage_themes_custom_column( $column_name, $stylesheet, $theme ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'manage_themes_custom_column', 'action_manage_themes_custom_column', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'manage_themes_custom_column', 'action_manage_themes_custom_column', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/class-wp-ms-themes-list-table.php
- do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme );