如何在我的网站帖子页面上显示作者姓名?

时间:2017-02-13 09:20:23

标签: css wordpress web

如何在我的网站主页和单个帖子页面上的日期附近显示作者姓名? 。是否有css代码。我使用海明威主题。我的网站是www.avjtrickz.com。请帮帮我,谢谢你提前。

3 个答案:

答案 0 :(得分:0)

你必须使用:

<?php the_author(); ?>

或:

df1[]

您可以在此处找到更多信息:enter image description here

在这里:https://codex.wordpress.org/Function_Reference/get_the_author

在这里:https://codex.wordpress.org/Function_Reference/the_author

答案 1 :(得分:0)

这需要使用WordPress codex为作者完成。此引用需要在循环中使用。这没有CSS。

https://codex.wordpress.org/Function_Reference/the_author

答案 2 :(得分:0)

<?php $name = get_the_author_meta( 'display_name' ); ?>

参考:https://developer.wordpress.org/reference/functions/get_the_author_meta/