install_themes_table_header
Action HookDescription
Fires in the Install Themes list table header.Hook Information
File Location |
wp-admin/includes/class-wp-theme-install-list-table.php
View on GitHub
|
Hook Type | Action |
Line Number | 217 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into install_themes_table_header
add_action('install_themes_table_header', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-admin/includes/class-wp-theme-install-list-table.php:217
- How this hook is used in WordPress core
<?php
212 /**
213 * Fires in the Install Themes list table header.
214 *
215 * @since 2.8.0
216 */
217 do_action( 'install_themes_table_header' );
218 ?>
219 </div>
220 <?php $this->pagination( 'top' ); ?>
221 <br class="clear" />
222 </div>
PHP Documentation
<?php
/**
* Fires in the Install Themes list table header.
*
* @since 2.8.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-admin/includes/class-wp-theme-install-list-table.php
Related Hooks
Related hooks will be displayed here in future updates.