クラス WP_Theme::get_allowed_on_network()
2014/12/17
WP_Theme::get_allowed_on_network()
WP_Theme::定義ファイル : /blog/wp-includes/class-wp-theme.php
1 2 3 4 5 6 | public static function get_allowed_on_network() { static $allowed_themes; if ( ! isset( $allowed_themes ) ) $allowed_themes = (array) get_site_option( 'allowedthemes' ); return $allowed_themes; } |