wp_get_theme()函数主要作用是用来获得WordPress主题的相关信息。
语法
<?php wp_get_theme($stylesheet, $theme_root) ?>
参数
参数1:内容为查询的主题名,可选。默认值:null
参数2:主题根要查看的绝对路径。可选。如果没有指定,get_raw_theme_root()用于计算主题根为样式表提供(或当前主题)。默认值:null
实例
<?php
$theme = wp_get_theme();
echo $theme->get( 'Name' ); //主题名
echo $theme->get( ThemeURI' ); //主题 URL
echo $theme->get( Description' ); //主题描述
echo $theme->get( Author' ); //作者名
?>
wp_get_theme()函数详细参数:
当然啦,wp_get_theme()函数还可以指定主题名来获取指定主题的其它信息,如下:
<?php
$theme = wp_get_theme( 'Viti' );
if ( $theme->exists() )
echo $theme;
?>