繁体   English   中英

wordpress 页面中自定义 wp_query 的分页不起作用

[英]Pagination for custom wp_query in wordpress page not working

我正在尝试为 website.com/blog 创建分页,此页面显示最新帖子。 我创建自定义 wp_query 来显示,但我的默认分页不适用于此 wp_query。 我的 wp_query 是:

<?php
        $paged = get_query_var('paged') ? get_query_var('paged') : 1;
        $ck_posts = new WP_Query(array(
            'post_type' => 'post',
            'posts_per_page' =>  2,
            'paged' => $paged
        ));
        if ($ck_posts->have_posts()) : while ($ck_posts->have_posts()) : $ck_posts->the_post();
                get_template_part('includes/e', 'post-card');
            endwhile;
            pagination();
        else : endif;
        ?>

我的默认分页在普通页面中工作正常,但在自定义 wp_query 中遇到问题,

分页功能代码:

function pagination()
{
    global $wp_query;
    /** Stop execution if there's only 1 page */
    if ($wp_query->max_num_pages <= 1) return;
    $paged = get_query_var('paged') ? absint(get_query_var('paged')) : 1;
    $max = intval($wp_query->max_num_pages);
    /** Add current page to the array */
    if ($paged >= 1) $links[] = $paged;
    /** Add the pages around the current page to the array */
    if ($paged >= 3) {
        $links[] = $paged - 1;
        $links[] = $paged - 2;
    }

    if (($paged + 2) <= $max) {
        $links[] = $paged + 2;
        $links[] = $paged + 1;
    }

    echo '<div class="navigation"><ul>' . "\n";
    /** Previous Post Link */
    if (get_previous_posts_link()) printf('<li>%s</li>' . "\n", get_previous_posts_link());
    /** Link to first page, plus ellipses if necessary */
    if (!in_array(1, $links)) {
        $class = 1 == $paged ? ' class="active"' : '';
        printf('<li%s><a href="%s">%s</a></li>' . "\n", $class, esc_url(get_pagenum_link(1)), '1');
        if (!in_array(2, $links)) echo '<li>…</li>';
    }

    /** Link to current page, plus 2 pages in either direction if necessary */
    sort($links);
    foreach ((array)$links as $link) {
        $class = $paged == $link ? ' class="active"' : '';
        printf('<li%s><a href="%s">%s</a></li>' . "\n", $class, esc_url(get_pagenum_link($link)), $link);
    }

    /** Link to last page, plus ellipses if necessary */
    if (!in_array($max, $links)) {
        if (!in_array($max - 1, $links)) echo '<li>…</li>' . "\n";
        $class = $paged == $max ? ' class="active"' : '';
        printf('<li%s><a href="%s">%s</a></li>' . "\n", $class, esc_url(get_pagenum_link($max)), $max);
    }

    /** Next Post Link */
    if (get_next_posts_link()) printf('<li>%s</li>' . "\n", get_next_posts_link());
    echo '</ul></div>' . "\n";
}

怎么了 ? 我该如何解决这个问题或为这个查询创建新函数,就像正常分页一样?

问题是全局$wp_query不包含自定义查询的结果。

可能有一个很好的理由说明这不是一个好主意,但我不知道它是什么,所以我的建议是在调用pagination()之前覆盖全局$wp_query

...
if ($ck_posts->have_posts()) : while ($ck_posts->have_posts()) : $ck_posts->the_post();
                get_template_part('includes/e', 'post-card');
            endwhile;
            $GLOBALS['wp_query']= $ck_posts;
            pagination();
        else : endif;
?>

对于当前版本的 Wordpress (5.5.1),这也是内置的the_pagination()函数在自定义查询中无法正常工作的原因。 请参阅https://developer.wordpress.org/reference/functions/get_the_posts_pagination/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM