admin管理员组文章数量:1328953
Parent comment's author name
I found this code and would like to modify it as follows: if someone changes the display_name, the name in the comments should also change. I was able to achieve this with the following code in the comments:
$usermeta = get_userdata($comment->user_id);
<?php echo $usermeta->display_name?>
However, I don't know how to change the code below to show display_name here as well.
if( $comment->comment_parent )
comment_author( $comment->comment_parent );
I appreciate any help.
Parent comment's author name
I found this code and would like to modify it as follows: if someone changes the display_name, the name in the comments should also change. I was able to achieve this with the following code in the comments:
$usermeta = get_userdata($comment->user_id);
<?php echo $usermeta->display_name?>
However, I don't know how to change the code below to show display_name here as well.
if( $comment->comment_parent )
comment_author( $comment->comment_parent );
I appreciate any help.
Share Improve this question asked Jul 14, 2020 at 19:16 Robert HeroldRobert Herold 12 bronze badges 1- You want to show the display_name for the parent comment instead of the author name? – mozboz Commented Jul 14, 2020 at 21:09
2 Answers
Reset to default 0So to do the same thing but for the parent comment this should do it. This is untested but does the same thing as your first case, but with the parent comment object instead of the current comment.
if( $comment->comment_parent ) {
$parentComment = get_comment($comment->parent);
$usermeta = get_userdata($parentComment->user_id);
echo $usermeta->display_name ;
}
Does that do it?
Oh, I got it!
if( $comment->comment_parent ) {
$parent_ID = $comment->comment_parent;
$parent_comment = get_comment($parent_ID);
$parent_usermeta = get_userdata($parent_comment->user_id);
echo $parent_usermeta->display_name; }
本文标签: Parent comment39s author displayname
版权声明:本文标题:Parent comment's author display_name 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742256729a2441764.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论