install_plugins_table_header
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
install_plugins_table_header
wp-admin/includes/class-wp-plugin-install-list-table.php 418
do_action( 'install_plugins_table_header' );