2024年05月29日 建站教程
wordpress建站中,如何利用自身函数显示当前评论的作者名称,下面web建站小编给大家简单介绍一下comment_author
函数的基本用法!
函数原型:
comment_author( int|WP_Comment $comment_id )
函数源码:
function comment_author( $comment_id = 0 ) { $comment = get_comment( $comment_id ); $author = get_comment_author( $comment ); echo apply_filters( 'comment_author', $author, $comment->comment_ID ); }
调用方法:
<div><?php comment_author(); ?></div>
本文链接:http://so.lmcjl.com/news/5547/