一般评论列表显示在文章页面中。
使用 wp_list_comments 函数即可。
若没有参数,则输出默认的品论列表。
一般改函数写在comments.php模板中。
<?php wp_list_comments(); ?>
wp_list_comments的第一个参数可以用于列表的自定义:
style 可以选择 div ul ol 标签包围评论列表
max_depth 返回树形结构的最大深度
type 输出评论类型:all comment trackback pingback pings
per_page 每页输出的评论数。
format html5 或者 xhtml
avatar_size Gravatar头像尺寸
reverse_top_level true则按照时间降序排序
若要每页显示10条评论并按时间降序排列,
分页的上下页链接需要使用 previous_comment_link/next_comments_link输出,将在今后讲解。
- wp_list_comments(array(
- 'reverse_top_level' => false,
- 'per_page' => 10
- ));
新闻热点
疑难解答
图片精选