get_themes()WP 1.5.0

Устарела с версии 3.4.0. Больше не поддерживается и может быть удалена. Используйте wp_get_themes().

Retrieve list of themes with theme data in theme directory.

The theme is broken, if it doesn't have a parent theme and is missing either style.css and, or index.php. If the theme has a parent theme then it is broken, if it is missing style.css; index.php is optional.

Хуков нет.

Возвращает

Массив. Theme list with theme data.

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

get_themes();

Заметки

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

С версии 1.5.0 Введена.
Устарела с 3.4.0 Use wp_get_themes()

Код get_themes() WP 6.5.2

function get_themes() {
	_deprecated_function( __FUNCTION__, '3.4.0', 'wp_get_themes()' );

	global $wp_themes;
	if ( isset( $wp_themes ) )
		return $wp_themes;

	$themes = wp_get_themes();
	$wp_themes = array();

	foreach ( $themes as $theme ) {
		$name = $theme->get('Name');
		if ( isset( $wp_themes[ $name ] ) )
			$wp_themes[ $name . '/' . $theme->get_stylesheet() ] = $theme;
		else
			$wp_themes[ $name ] = $theme;
	}

	return $wp_themes;
}