wordpress技巧如何显示当前评论的摘要

2024年10月15日 建站教程

wordpress建站中,如何利用comment_excerpt()函数显示当前评论的摘要,下面web建站小编给大家简单介绍一下!

函数原型:

comment_excerpt( int|WP_Comment $comment_id )

//$comment_id, 要打印摘录的评论的WP_Comment或ID。默认当前评论。

函数源码:

function comment_excerpt( $comment_id = 0 ) {
  $comment  = get_comment( $comment_id );
  $comment_excerpt = get_comment_excerpt( $comment );
  
  echo apply_filters( 'comment_excerpt', $comment_excerpt, $comment->comment_ID );
}

包含钩子:

apply_filters( 'comment_excerpt', string $comment_excerpt, string $comment_id )

调用方法:

<p>Latest comment: <?php comment_excerpt(); ?></p>

本文链接:http://so.lmcjl.com/news/15459/

展开阅读全文
相关内容