3

我想构建一个显示所有评论的页面,无论它们附加到哪个帖子。我还希望对该页面进行分页,因为它可能有 10,000 多条评论。


我不知道该怎么做,但这里有一些我迄今为止研究过的功能:

  1. get_comments- 如果没有post_id传入,它将返回所有评论。但是,我看不到对这些进行分页的方法(有一些可供选择offsetnumber选项,但手动操作非常乏味)。

  2. wp_list_comments- 这方面的文档非常糟糕,但源代码get_comments表明,如果与 结合使用,我们可以通过将get_comments数组作为第二个参数传递来遍历所有注释。然而,这实际上仍然会用于get_comments......好吧,获得评论,并且似乎没有办法对其进行分页。

  3. previous_comments_link& next_comments_link- 这些似乎只能与wp_list_comments(没有第二个参数)结合使用。

  4. paginate_comments_links- 看起来它只适用于wp_list_comments(没有第二个参数)。


我试过的:

  1. 只需使用以下number参数get_comments

    $comments = get_comments(array(
        'status'    => 'approve',
        'number'    => '2'
    ));
    
    wp_list_comments(array(
        'callback' => 'my_rendering_function'
    ), $comments);
    
    paginate_comments_links();
    

    这不会显示任何分页链接。

  2. 这里建议的方法:Display latest comments on page with pagination

    $comments = get_comments(array(
        'status' => 'approve'
    ));
    
    wp_list_comments('per_page=2', $comments);
    
    paginate_comments_links();
    

    这也不起作用(它显示前 2 条评论,但没有分页)。此外,我对将所有get_comments评论加载到内存中感到畏缩。


问题:

如何对所有评论进行分页?


PS我正在使用 WordPress 3.4.1 和 PHP 5.3.2。

4

2 回答 2

4

如果您计划建立自己的分页,您将需要知道您将要使用的评论总数,因此您必须加载所有评论。

我已经建立了我会使用的东西,让我知道它是否有帮助。

#Config here.
define('DEFAULT_COMMENTS_PER_PAGE',100);

$page = (int) (!isset($_REQUEST["page"]) ? 1 : $_REQUEST["page"]);
$limit = DEFAULT_COMMENTS_PER_PAGE;
$offset = ($page * $limit) - $limit;
$param = array(
    'status'=>'approve',
    'offset'=>$offset,
    'number'=>$limit,
);
$total_comments = get_comments(array('status'=>'approve'));
$pages = ceil(count($total_comments)/DEFAULT_COMMENTS_PER_PAGE);
$comments = get_comments($param);
foreach($comments as $comment) {
    // ECHO THE AUTHOR AND COMMENT
    echo("<strong>{$comment->comment_author}</strong> - {$comment->comment_content}");
}
$args = array(
'base'         => 'https://example.com/all-comments/%_%',
'format'       => '?page=%#%',
'total'        => $pages,
'current'      => $page,
'show_all'     => False,
'end_size'     => 1,
'mid_size'     => 2,
'prev_next'    => True,
'prev_text'    => __('&laquo; Previous'),
'next_text'    => __('Next &raquo;'),
'type'         => 'plain');
// ECHO THE PAGENATION 
echo paginate_links( $args );
于 2012-09-11T22:56:43.230 回答
0

我们应该担心使用 get_comments() 获取总评论的性能。必须使用参数 offset 为 false,并且 count 为 true,如下所示:

$comments_per_page = 2;
$page = 2;

//MYSQL: LIMIT offset, number
$params = array(
    'post_id' => $post_id,
    'offset' => (--$page) * $comments_per_page,
    'number' => $comments_per_page,
);

$comments = get_comments( $params );
$total_comments = get_comments(
    array_merge($params, 
            array(
                'count' => true,
                'offset' => 0,
                'number' => 0
            )
    )
);


$args = array(
    'total'     => ceil( $total_comments / $comments_per_page ),
    'current'   => max( 1, $page ),
);

$pagination = paginate_links( $args );

添加您需要的任何参数。您可以将 wp_list_comments() 用作 Weel,但如果您想自定义输出 HTML,请使用 foreach for $comments:

foreach ( $comments as $comment ) :

    echo $comment->comment_date;
    echo '<br>';
    echo $comment->comment_author;
    echo '<br>';
    echo $comment->comment_content;

endforeach;
于 2015-01-23T05:26:49.280 回答