我正在創建自定義主題,還有自定義文章類型。 但是,自定義帖子類型的分頁不起作用。我嘗試了Stack Overflow的所有可能的解決方案,但都是徒勞的。自定義文章類型分頁不起作用
下面的代碼:
<?php global $wp_query;
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'posts_per_page' => 3,
'post_type' => 'services',
'orderby' => 'date',
'order' => 'DESC',
'nopaging' => false,
'paged'=>$paged
);
$the_query = new WP_Query($args); ?>
<div class="service-content clearfix">
<ul class="clearfix">
<?php if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?>
<?php $word_count = strlen(wp_strip_all_tags($post->post_content));
$id = get_the_ID();?>
<li class="col-sm-4 wow fadeInDown animated" data-wow-delay="300ms" data-wow-duration="500ms">
<figure class="image">
<?php the_post_thumbnail('medium'); ?>
</figure>
<?php if($word_count<269){ ?>
<h3><?php echo $post->post_title; ?></h3>
<p><?php echo $post->post_content; ?></p>
<?php } else{ ?>
<h3><?php echo $post->post_title; ?></h3>
<?php echo $post->post_content; ?>
<?php } ?>
</li>
<?php endwhile;
next_posts_link();
previous_posts_link();?>
<?php wp_reset_query(); ?>
<?php endif; ?>
</ul>
</div>
這裏,posts_per_page
是工作,但Pagination
不工作,任何幫助嗎?
嗯,它只是顯示下一個和上一個鏈接。它什麼都不做:/ –