install_themes_nonmenu_tabs filter-hook . WP 2.8.0
Filters tabs not associated with a menu item on the Install Themes screen.
Usage
add_filter( 'install_themes_nonmenu_tabs', 'filter_function_name_2372' ); function filter_function_name_2372( $nonmenu_tabs ){ // filter... return $nonmenu_tabs; }
- $nonmenu_tabs(string[])
- The tabs that don't have a menu item on the Install Themes screen.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
wp-admin/includes/class-wp-theme-install-list-table.php 82
$nonmenu_tabs = apply_filters( 'install_themes_nonmenu_tabs', $nonmenu_tabs );