0

我在 wordpress 中的分页有问题。我有一个类别模板,它涉及对自定义帖子的查询。问题是,当我添加分页并转到下一页时,分页添加 $_GET['paged'] 但模板拒绝它并进入 404 页面。我还发现如果 $_GET['paged']=1 一切正常,但如果它是 2 或更多,则抛出 404 页面。问题是我尝试在索引循环中,它也不起作用。我正在使用 html5blank 主题。

这是查询的代码:

<section id="inner-pad">
<?php 
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;    
$args = array(
//'posts_per_page' => 6,
'post_type' =>  'menu-pub',
'cat' =>3,
'paged' => $paged,
'order'=>'DESC'
);
$wp_query = new WP_Query( $args );
$i=1;
while ( $wp_query->have_posts() )
{
    $wp_query->the_post();
    ?>
  <article class="article-first-vision <?= ($i==2)?'mar':'' ?>" >
  <?php if ( has_post_thumbnail()) { ?>
  <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
  <?php the_post_thumbnail('menu-pub'); ?>
  </a>
  <?php
}; ?>
  <h2>
    <?php the_title(); ?>
  </h2>
  <p>
    <?php the_content(); ?>
  </p>
  </article>
  <?php
  if($i==3){$i=0;}enter code here
  $i++;
}
?>
    </section>
    <?php 
     $big = 999999999;
     echo paginate_links(array(
    'base' => str_replace($big, '%#%', get_pagenum_link($big)),
    'format' => '?paged=%#%',
    'current' => max(1, get_query_var('paged')),
    'total' => $wp_query->max_num_pages
     ));
     ?>

这是一个新对话框,我为此设置了一个主题:

http://wordpress.org/support/topic/custom-post-and-category-template-pagination-problem?replies=2#post-4560385

4

2 回答 2

0

您好,我的问题的答案如下:

add_action( 'parse_query','changept' );
function changept() {
if( is_category() && !is_admin() )
    set_query_var( 'post_type',  array( 'menu-pub', 'new-pub', 'read-pub', 'awards-pub', 'live-pub','post' ));
return;
}
于 2013-08-21T15:22:24.727 回答
0

尝试添加global $wp_query之前paginate_links()

于 2013-08-08T13:15:10.983 回答