1

我的首页上有两个循环,它们都使用分页 - 我已经设法找到代码来让它工作,粘贴在下面。是否可以让 paginate_links 不显示我的帖子总数?目前它看起来像:1、2、3...526。接下来。我更喜欢:1, 2, 3... Next

当前代码:

            // Courtesy of Boone Gorges

            $paged1 = isset( $_GET['paged1'] ) ? (int) $_GET['paged1'] : 1;
            $paged2 = isset( $_GET['paged2'] ) ? (int) $_GET['paged2'] : 1;

            // Custom Loop with Pagination 1
            // http://codex.wordpress.org/Class_Reference/WP_Query#Usage
            $args1 = array(
                'paged'          => $paged1, // http://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters
                'posts_per_page' => 1,
                'category_name'  => 'wod'
            );
            $query1 = new WP_Query( $args1 );

            while ( $query1->have_posts() ) : $query1->the_post();
                echo '<h4>';
                the_date();
                echo '</h4>';
                the_content();
                echo '<hr>';
            endwhile;

            // http://codex.wordpress.org/Function_Reference/paginate_links
            $pag_args1 = array(
                'format'   => '?paged1=%#%',
                'current'  => $paged1,
                'total'    => $query1->max_num_pages,
        'show_all' => False,
                'add_args' => array( 'paged2' => $paged2 ),
        'prev_text' => 'Next',  
            'next_text' => 'Prev'
            );
            echo paginate_links( $pag_args1 );
        ?>
4

1 回答 1

1

我刚刚解决了同样的问题。方法如下:

1) 使用数组类型获取分页

$pagination = paginate_links(array(
    ....
    'type' => 'array',
));

2)从数组中删除倒数第二项

unset($pagination[sizeof($pagination)-2]);

3)从数组构建列表

echo '<ul>';
foreach ($pagination as $pag)
{
  echo '<li>';
  echo $pag;
  echo '</li>';
}
echo '</ul>';
于 2013-11-25T08:24:54.253 回答