get_site_allowed_themes

函数
get_site_allowed_themes ( No parameters )
相关
  • WP_Theme::get_allowed_on_network()
定义位置
相关方法
get_allowed_themeswpmu_get_blog_allowedthemesget_space_allowedget_allowed_mime_typesrest_send_allow_header
引入
-
弃用
3.4.0

get_site_allowed_themes: 这个函数检索一个特定站点的允许主题数组。它需要一个参数:网站的ID。它返回一个字符串形式的允许主题的数组。

获得支持网络的主题的功能已经过时。

function get_site_allowed_themes() {
	_deprecated_function( __FUNCTION__, '3.4.0', 'WP_Theme::get_allowed_on_network()' );
	return array_map( 'intval', WP_Theme::get_allowed_on_network() );
}

常见问题

FAQs
查看更多 >