install_themes_table_header action-hookWP 2.8.0

Fires in the Install Themes list table header.

Usage

add_action( 'install_themes_table_header', 'wp_kama_install_themes_table_header_action' );

/**
 * Function for `install_themes_table_header` action-hook.
 * 
 * @return void
 */
function wp_kama_install_themes_table_header_action(){

	// action...
}

Changelog

Since 2.8.0 Introduced.

Where the hook is called

WP_Theme_Install_List_Table::display()
install_themes_table_header
wp-admin/includes/class-wp-theme-install-list-table.php 217
do_action( 'install_themes_table_header' );

Where the hook is used in WordPress

wp-admin/includes/class-wp-theme-install-list-table.php 116
add_action( 'install_themes_table_header', 'install_theme_search_form', 10, 0 );