install_plugins_table_header
Fires before the Plugin Install table header pagination is displayed.
Description
Parameters (1)
- 0. $install_search_form (string) =>
'install_search_form'
- The install search form.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'install_plugins_table_header', $install_search_form );
- The following example is for adding a hook callback.
- // define the install_plugins_table_header callback
- function action_install_plugins_table_header( $install_search_form ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'install_plugins_table_header', 'action_install_plugins_table_header', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'install_plugins_table_header', 'action_install_plugins_table_header', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /modules/omnisearch/omnisearch-plugins.php
- remove_action( 'install_plugins_table_header', 'install_search_form' );