wpseek.com
WordPress开发者和主题制作者的搜索引擎



theme_action_links › WordPress过滤钩子

Since2.8.0
已弃用n/a
apply_filters( 'theme_action_links', array_filter( $actions )
参数: (3)
  • (string[]) $actions An array of action links.
    Required: Yes
  • (WP_Theme) $theme The current WP_Theme object.
    Required: Yes
  • (string) $context Status of the theme, one of 'all', 'enabled', or 'disabled'.
    Required: Yes
定义在:
文档:

Filters the action links displayed for each theme in the Multisite themes list table.

The action links displayed are determined by the theme's status, and which Multisite themes list table is being displayed - the Network themes list table (themes.php), which displays all installed themes, or the Site themes list table (site-themes.php), which displays the non-network enabled themes when editing a site in the Network admin.

The default action links for the Network themes list table include 'Network Enable', 'Network Disable', and 'Delete'.

The default action links for the Site themes list table include 'Enable', and 'Disable'.





源码

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