функция
Устаревший since 1.5.0
get_theme_data()
Устаревшее.
Помечено устаревшим с версии 3.4.0.
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
get_theme_data( string $theme_file ): array
Описание
См. alsowp_get_theme()
Оригинал (английский)
Параметры
$theme_file
string
обязательный
Путь к файлу темы.
Возвращаемое значение
array
Исходный код
wp-includes/deprecated.php:3082
function get_theme_data( $theme_file ) {
_deprecated_function( __FUNCTION__, '3.4.0', 'wp_get_theme()' );
$theme = new WP_Theme( wp_basename( dirname( $theme_file ) ), dirname( dirname( $theme_file ) ) );
$theme_data = array(
'Name' => $theme->get('Name'),
'URI' => $theme->display('ThemeURI', true, false),
'Description' => $theme->display('Description', true, false),
'Author' => $theme->display('Author', true, false),
'AuthorURI' => $theme->display('AuthorURI', true, false),
'Version' => $theme->get('Version'),
'Template' => $theme->get('Template'),
'Status' => $theme->get('Status'),
'Tags' => $theme->get('Tags'),
'Title' => $theme->get('Name'),
'AuthorName' => $theme->get('Author'),
);
foreach ( apply_filters( 'extra_theme_headers', array() ) as $extra_header ) {
if ( ! isset( $theme_data[ $extra_header ] ) )
$theme_data[ $extra_header ] = $theme->get( $extra_header );
}
return $theme_data;
}
История изменений
| Версия | Описание |
|---|---|
| 3.4.0 | Deprecated. Use wp_get_theme() |
| 1.5.0 | Introduced. |

