theme_action_links

过滤钩子
apply_filters( 'theme_action_links', array_filter( $actions )
参数
  • (string[]) $actions An array of action links.
    Required:
  • (WP_Theme) $theme The current WP_Theme object.
    Required:
  • (string) $context Status of the theme, one of 'all', 'enabled', or 'disabled'.
    Required:
定义位置
相关勾子
the_author_linktheme_action_links_stylesheetmanage_sites_action_linksplugin_action_linkstheme_install_actions
相关方法
the_author_linkthe_attachment_linksdocumentation_linkthe_attachment_linkget_the_author_linkthe_author_login
引入
2.8.0
弃用
-

theme_action_links是一个WordPress过滤钩子,允许开发者在WordPress管理区的主题页面的”Action”链接部分添加额外的链接。这可以用来添加到自定义主题设置页面的链接,或执行其他操作。

过滤多站点主题列表表中每个主题所显示的行动链接。

显示的操作链接由主题的状态和正在显示的多站点主题列表表决定–网络主题列表表(themes.php),它显示所有已安装的主题,或者站点主题列表表(site-themes.php),它在网络管理中编辑站点时显示非网络启用主题。

网络主题列表表的默认操作链接包括”网络启用”、”网络禁用”和”删除”。

网站主题列表表的默认操作链接包括”启用”和”禁用”。

$actions = apply_filters( 'theme_action_links', array_filter( $actions ), $theme, $context );

常见问题

FAQs
查看更多 >