WP_Theme::get_core_default_theme(): WP_Theme|false

In this article

Determines the latest WordPress default theme that is installed.

Description

This hits the filesystem.

Return

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

Source

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;
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.