install_themes_tabs
云策文档标注
概述
install_themes_tabs 是一个 WordPress 过滤器,用于修改“添加主题”屏幕显示的选项卡。此过滤器主要用于向后兼容,以控制上传选项卡的显示。
关键要点
- 过滤器名称:install_themes_tabs
- 用途:过滤“添加主题”屏幕的选项卡数组,默认仅包含 'upload' 选项卡
- 参数:$tabs(关联数组),默认值为 array( 'upload' => __( 'Upload Theme' ) )
- 引入版本:WordPress 2.8.0
- 相关函数:WP_Theme_Install_List_Table::prepare_items()
原文内容
Filters the tabs shown on the Add Themes screen.
Description
This filter is for backward compatibility only, for the suppression of the upload tab.
Parameters
$tabsstring[]-
Associative array of the tabs shown on the Add Themes screen. Default is
'upload'.
Source
$tabs = apply_filters( 'install_themes_tabs', array( 'upload' => __( 'Upload Theme' ) ) );
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |