wp_using_themes

过滤钩子
apply_filters( 'wp_using_themes', defined( 'WP_USE_THEMES' )
参数
  • (bool) $wp_using_themes Whether the current request should use themes.
    Required:
定义位置
相关勾子
wp_trusted_keyswp_unique_term_slugwp_sitemaps_initwp_revisions_to_keeppre_get_terms
相关方法
wp_using_themeswp_get_themeswp_paused_themeswp_get_themewp_update_themeswp_is_using_https
引入
5.1.0
弃用
-

wp_using_themes: 这是一个WordPress函数,它用于检测当前WordPress站点是否使用主题。返回值为true时,说明当前站点正在使用主题;否则返回false: 这个函数可以用于验证站点是否正在使用主题,并在必要时作出相应的处理。

过滤当前请求是否应该使用主题。

return apply_filters( 'wp_using_themes', defined( 'WP_USE_THEMES' ) && WP_USE_THEMES );

常见问题

FAQs
查看更多 >