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



themes_api › WordPress过滤钩子

Since2.8.0
已弃用n/a
apply_filters( 'themes_api', false, $action, $args )
参数: (3)
  • (false|object|array) $override Whether to override the WordPress.org Themes API. Default false.
    Required: Yes
  • (string) $action Requested action. Likely values are 'theme_information', 'feature_list', or 'query_themes'.
    Required: Yes
  • (object) $args Arguments used to query for installer pages from the Themes API.
    Required: Yes
定义在:
文档:

Filters whether to override the WordPress.org Themes API.

Returning a non-false value will effectively short-circuit the WordPress.org API request.

If $action is 'query_themes', 'theme_information', or 'feature_list', an object MUST be passed. If $action is 'hot_tags', an array should be passed.





源码

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