WP_Theme::get_core_default_theme()public staticWP 4.4.0

Determines the latest WordPress default theme that is installed.

This hits the filesystem.

Метод класса: WP_Theme{}

Хуков нет.

Возвращает

WP_Theme|false. Object, or false if no theme is installed, which would be bad.

Использование

$result = WP_Theme::get_core_default_theme();

Список изменений

С версии 4.4.0 Введена.

Код WP_Theme::get_core_default_theme() WP 6.4.3

public static function get_core_default_theme() {
	foreach ( array_reverse( self::$default_themes ) as $slug => $name ) {
		$theme = wp_get_theme( $slug );
		if ( $theme->exists() ) {
			return $theme;
		}
	}
	return false;
}