6

我需要在我的博客页面中创建一个分页器,直到它很好,但是当我点击我的分页链接时,我没有找到页面,我需要知道我是否需要在面板中启用某些东西来让 wordpress 能够访问到 ?page=N

功能:

    function get_pagination($the_query) {
    global $paged;
    $total_pages = $the_query->max_num_pages;
    $big = 999999999;

    if ($total_pages > 1) {
        ob_start();

        echo paginate_links( array(
            'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
            'format' => '/page/%#%',
            'current' => $paged,
            'total' => $total_pages,
            'prev_text' => '',
            'next_text' => ''
        ));
        return ob_get_clean();
    }
    return null;
}

我的博客代码

$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
        // echo $paged;
        $produtos = new WP_Query(array(
            'post_type'      => 'blog',
            'posts_per_page' => 1,
            'orderby'        => 'date',
            'order'          => 'asc',
            'paged'          => $paged,
            'tax_query'      => array(
                array(
                    'taxonomy' => 'categorias',
                    'field'    => 'slug',
                    'terms'    => ACTIVE
                )
            )
        ));

        while ( $produtos->have_posts() ) : $produtos->the_post();

        //CONTENT

        endwhile;

        echo get_pagination($produtos);
4

5 回答 5

33

转到管理仪表板,Settings->Reading然后设置Blog pages show at most等于您的查询posts_per_page。因此,在您的查询中,如果您设置posts_per_page => 2thenBlog pages show at most将是2

于 2016-09-28T05:03:09.993 回答
17

这就是我发现并解决了我遇到的问题!

[...] 我需要进入 wp-admin 页面(wordpress 仪表板)并进入设置然后阅读并在“博客页面最多显示”字段中我将值从“10”更改为“6”(我在中指出的帖子数量 $wp_query->query('showposts=6&cat=1'.'&paged='.$paged);

于 2013-11-21T16:45:47.767 回答
1

使用以下分页查询

if ( get_query_var('paged') ) { $paged = get_query_var('paged'); }
elseif ( get_query_var('page') ) { $paged = get_query_var('page'); }
else { $paged = 1; }

    $produtos = new WP_Query(array(
            'post_type'      => 'blog',
            'posts_per_page' => -1,
            'orderby'        => 'date',
            'order'          => 'asc',
            'paged'          => $paged,
            'tax_query'      => array(
                array(
                    'taxonomy' => 'categorias',
                    'field'    => 'slug',
                    'terms'    => ACTIVE
                )
            )
        ));

        while ( $produtos->have_posts() ) : $produtos->the_post();

        //CONTENT

        endwhile;

        echo get_pagination($produtos);
于 2013-09-11T14:57:48.850 回答
0

请检查您的 .htaccess 文件。它应该包含一个重写规则以启用带有斜杠的分页。

请参阅:“使用漂亮的永久链接” - http://codex.wordpress.org/Using_Permalinks

于 2013-09-11T15:00:52.270 回答
-5

转到您的 wordpress 仪表板设置然后阅读并在“博客页面最多显示”字段中,将值从“10”更改为“1”干杯!

于 2014-09-08T15:52:51.267 回答