Action hook 'install_plugins_table_header'

in WP Core File wp-admin/includes/class-wp-plugin-install-list-table.php at line 413

View Source

install_plugins_table_header

Action Hook
Description
Fires before the Plugin Install table header pagination is displayed.

Hook Information

File Location wp-admin/includes/class-wp-plugin-install-list-table.php View on GitHub
Hook Type Action
Line Number 413

Hook Parameters

This hook doesn't accept any parameters.

Usage Examples

Basic Usage
<?php
// Hook into install_plugins_table_header
add_action('install_plugins_table_header', 'my_custom_function');

function my_custom_function() {
    // Your custom code here
}

Source Code Context

wp-admin/includes/class-wp-plugin-install-list-table.php:413 - How this hook is used in WordPress core
<?php
 408  					/**
 409  					 * Fires before the Plugin Install table header pagination is displayed.
 410  					 *
 411  					 * @since 2.7.0
 412  					 */
 413  					do_action( 'install_plugins_table_header' );
 414  					?>
 415  				</div>
 416  				<?php $this->pagination( $which ); ?>
 417  				<br class="clear" />
 418  			</div>

PHP Documentation

<?php
/**
					 * Fires before the Plugin Install table header pagination is displayed.
					 *
					 * @since 2.7.0
					 */
Quick Info
  • Hook Type: Action
  • Parameters: 0
  • File: wp-admin/includes/class-wp-plugin-install-list-table.php
Related Hooks

Related hooks will be displayed here in future updates.