install_themes_table_header
The WordPress Core install themes table header hook.
Description
add_action( 'install_themes_table_header', (string) $install_theme_search_form, (int) $int, (int) $int );
Parameters (3)
- 0. $install_theme_search_form (string) =>
'install_theme_search_form'
- The install theme search form.
- 1. $int (int) =>
10
- The int.
- 2. $int (int)
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'install_themes_table_header', $install_theme_search_form, $int, $int );
- The following example is for adding a hook callback.
- // define the install_themes_table_header callback
- function action_install_themes_table_header( $install_theme_search_form, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'install_themes_table_header', 'action_install_themes_table_header', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'install_themes_table_header', 'action_install_themes_table_header', 10, 3 );
Defined (2)
The action is defined in the following location(s).
- /wp-admin/includes/class-wp-theme-install-list-table.php
- add_action( 'install_themes_table_header', 'install_theme_search_form', 10, 0 );
- do_action( 'install_themes_table_header' );