使用php(wordpress)从Style.css获取作者URL

时间:2014-04-12 13:16:17

标签: wordpress url author

我创建了一个wordpress主题,现在我想在页脚显示作者网址。我如何通过php方法从样式中获取它。我知道简单的方法,但是通过php得到它就像WordPress从Style中的注释中获取主题名称和描述。

1 个答案:

答案 0 :(得分:0)

您可以参考以下功能:
http://codex.wordpress.org/Function_Reference/wp_get_theme

默认情况下,您可以使用以下方式获取所需的作者信息:

$theme_data = wp_get_theme();
$author_name = $theme_data->get( 'Author' );