theme_action_links_{$stylesheet}

过滤钩子
apply_filters( "theme_action_links_{$stylesheet}", $actions, $theme, $context )
参数
  • (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:
定义位置
相关勾子
theme_action_linksafter_theme_row_stylesheetwp_sitemaps_stylesheet_urlwp_sitemaps_stylesheet_csscustomize_controls_print_styles
相关方法
wpmu_activate_stylesheetget_stylesheetget_editor_stylesheetswp_maybe_inline_styleswp_get_global_stylesheetget_locale_stylesheet_uri
引入
3.1.0
弃用
-

theme_action_links_{$stylesheet}是theme_action_links钩子的一个变种,专门针对某一特定主题。它允许开发者在主题页面的”行动”链接部分为特定主题添加额外的链接。

过滤多站点主题列表表中特定主题的动作链接。

钩子名的动态部分$stylesheet是指主题的目录名,在大多数情况下,它与模板名同义。

$actions = apply_filters( "theme_action_links_{$stylesheet}", $actions, $theme, $context );

常见问题

FAQs
查看更多 >