最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
wordpress中首页文章下显示评论内容
时间:2022-06-25 19:16:46 编辑:袖梨 来源:一聚教程网
首页文章下面显示若干条的评论内容,包括作者头像、评论时间、评论内容等,没有直接回复的功能,具体代码如下:
代码如下 | 复制代码 |
$args = array( 'status' => 'approved', 'number' => '5', 'post_id' => get_the_ID() ); $comments = get_comments($args); foreach($comments as $comment) : echo( get_avatar($comment->comment_author_email,64) . $comment->comment_author . ' ' . $comment->comment_content ); endforeach; |
代码放在首页循环里就可以了。
相关文章
- 《无限暖暖》天星之羽获得位置介绍 12-20
- 《流放之路2》重铸台解锁方法介绍 12-20
- 《无限暖暖》瞄准那个亮亮的成就怎么做 12-20
- 《无限暖暖》魔气怪终结者完成方法 12-20
- 《无限暖暖》曙光毛团获得位置介绍 12-20
- 《无限暖暖》日光果获得位置介绍 12-20