如何在我的网站主页和单个帖子页面上的日期附近显示作者姓名? 。是否有css代码。我使用海明威主题。我的网站是www.avjtrickz.com。请帮帮我,谢谢你提前。
答案 0 :(得分:0)
你必须使用:
<?php the_author(); ?>
或:
df1[]
在这里:https://codex.wordpress.org/Function_Reference/get_the_author
在这里:https://codex.wordpress.org/Function_Reference/the_author
答案 1 :(得分:0)
这需要使用WordPress codex为作者完成。此引用需要在循环中使用。这没有CSS。
答案 2 :(得分:0)
<?php $name = get_the_author_meta( 'display_name' ); ?>
参考:https://developer.wordpress.org/reference/functions/get_the_author_meta/