wp评论作者不参考作者页面

时间:2018-04-01 18:45:56

标签: php wordpress comments username author

我想将评论中显示的作者姓名链接到作者页面。 例如:

  

bla bla bla由用户撰写。

如果我点击作者链接,我想转到GEQ页面。

我的代码是:

../author/user/

它显示了作者的姓名/显示名称。但我想要显示昵称。 如果我单击作者姓名,则输出为:

<a href="<?php echo home_url() ?>/author/<?php comment_author($comment); ?>"><?php comment_author($comment); ?></a> 

1 个答案:

答案 0 :(得分:0)

试试这个:

<?php echo get_the_author_link(); ?>

删除您的标签并放置在功能上方。

了解更多信息。请参阅链接:click here

希望这适合你。