首页    >    中文手册    >   常用函数-get_theme_data()

常用函数-get_theme_data()

常用函数-get_theme_data()

说明

返回关于主题文件信息的数组

用法

<?php $theme_data = get_theme_data($theme_filename); ?>

示例

用法

从默认主题style.css中获取信息,若含有主题的名称和作者则将其显示。

<?php      
    $theme_data = get_theme_data(ABSPATH . 'wp-content/themes/default/style.css');  
    echo $theme_data['Title'];      
    echo $theme_data['Author'];  
?>

参数

$theme_filename

(字符串)(必需)主题的style.css的路径和文件名

默认值:None

返回的值

该函数返回一个含有下列键信息的数组。

'Name'

(字符串)主题名称

'Title'

(字符串)主题名称或HTML片段,片段中含有链接到主题URI的主题名称,若主题URI被精炼。

'Description'

(字符串)HTML片段传递wptexturize后,返回一个含有关于主题描述的HTML片段。

'Author'

(字符串)返回作者名称或HRML片段,片段中含有可连接到作者URI的作者名称,若作者URI被精炼。

'Version'

(字符串)主题的版本号

'Template'

(字符串)若父主题存在,返回父主题的名称

'Status'

(字符串)默认值为'publish'

分类:中文手册

* 版权声明:作者WordPress啦! 转载请注明出处。