install_plugins_table_header action-hookWP 2.7.0

Fires before the Plugin Install table header pagination is displayed.

Usage

add_action( 'install_plugins_table_header', 'wp_kama_install_plugins_table_header_action' );

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

	// action...
}

Changelog

Since 2.7.0 Introduced.

Where the hook is called

WP_Plugin_Install_List_Table::display_tablenav()
install_plugins_table_header
wp-admin/includes/class-wp-plugin-install-list-table.php 413
do_action( 'install_plugins_table_header' );

Where the hook is used in WordPress

Usage not found.