我正在使用Wordpress创建博客。我正在文章中显示作者姓名,但它正在重复。我正在使用get_the_author();功能
这是我的wordpress网站:http://hideawayharbor.org/blog/
答案 0 :(得分:6)
撰写get_the_author();
代替the_author();
它将显示单个作者。
答案 1 :(得分:1)
确保你没有
回应the_author()
它的任何一个
the_author()
或
echo get_the_author()
答案 2 :(得分:1)
写时会显示两次
<?php echo the_author(); ?>
将会
<?php the_author(); ?>
答案 3 :(得分:0)
您应该在编辑器(例如Dreamweaver)中打开/wp-content/themes/YOURTHEME/single.php 并搜索字符串“发布者”
然后检查你的代码,你可能会发现它在那里回复了两次。
您还必须在page.php,archive.php和其他可能的地方修复此问题。
如果您需要更多帮助,请发布您在此处找到的代码。
答案 4 :(得分:-2)