themes_api

过滤钩子
apply_filters( 'themes_api', false, $action, $args )
参数
  • (false|object|array) $override Whether to override the WordPress.org Themes API. Default false.
    Required:
  • (string) $action Requested action. Likely values are 'theme_information', 'feature_list', or 'query_themes'.
    Required:
  • (object) $args Arguments used to query for installer pages from the Themes API.
    Required:
定义位置
相关勾子
themes_api_argsthemes_api_resulttheme_localeall_themestheme_row_meta
相关方法
themes_apithe_metathe_idget_themesget_theme_dataadd_theme_page
引入
2.8.0
弃用
-

themes_api是一个WordPress的动作钩子,当向WordPress.org Theme API发出请求时被触发。这个钩子允许开发者在API请求中添加额外的数据,例如关于请求的主题的信息。

过滤是否覆盖WordPress.org Themes API。

返回一个非假的值将有效地缩短WordPress.org的API请求。

如果$action是”query_themes”、”theme_information”或”feature_list”,必须传递一个对象。be passed. 如果$action是’hot_tags’,应该传递一个数组。

$res = apply_filters( 'themes_api', false, $action, $args );

常见问题

FAQs
查看更多 >