manage_themes_custom_column action-hook . WP 3.1.0
Fires inside each custom column of the Multisite themes list table.
Usage
add_action( 'manage_themes_custom_column', 'action_function_name_7081', 10, 3 ); function action_function_name_7081( $column_name, $stylesheet, $theme ){ // action... }
- $column_name(string)
- Name of the column.
- $stylesheet(string)
- Directory name of the theme.
- $theme(WP_Theme)
- Current WP_Theme object.
Changelog
Since 3.1.0 | Introduced. |
Where the hook is called
manage_themes_custom_column
wp-admin/includes/class-wp-ms-themes-list-table.php 866
do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme );