wpmu_get_blog_allowedthemes

函式
wpmu_get_blog_allowedthemes ( $blog_id = 0 )
相關
  • WP_Theme::get_allowed_on_site()
定義位置
相關方法
get_allowed_themesget_site_allowed_themeswp_get_themeswp_get_themewp_get_global_styles
引入
-
棄用
3.4.0

wpmu_get_blog_allowedthemes – 此函式檢索網路中特定站點的允許主題列表。

獲取特定站點允許的主題的功能已經過時。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wpmu_get_blog_allowedthemes( $blog_id = 0 ) {
_deprecated_function( __FUNCTION__, '3.4.0', 'WP_Theme::get_allowed_on_site()' );
return array_map( 'intval', WP_Theme::get_allowed_on_site( $blog_id ) );
}
function wpmu_get_blog_allowedthemes( $blog_id = 0 ) { _deprecated_function( __FUNCTION__, '3.4.0', 'WP_Theme::get_allowed_on_site()' ); return array_map( 'intval', WP_Theme::get_allowed_on_site( $blog_id ) ); }
function wpmu_get_blog_allowedthemes( $blog_id = 0 ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'WP_Theme::get_allowed_on_site()' );
	return array_map( 'intval', WP_Theme::get_allowed_on_site( $blog_id ) );
}

常見問題

FAQs
檢視更多 >