【发布时间】:2014-10-10 01:40:59
【问题描述】:
大家好,我正在使用自定义帖子类型在自定义 page.php 中运行查询循环。我希望它分页,这样我每页可以有特定数量的帖子。我想知道是否有人可以帮助我。我在下面添加了我的代码:
<?php query_posts( array(
'post_type' => array( 'POSTTYPE' ),
'showposts' => -1 )
); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="">
<a href="<?php the_permalink();?>"><?php the_title(); ?></a>
<?php the_post_thumbnail( 'thumbnail' , array('class' => 'aligncenter project_post_thumbnail') ); ?>
<a href="<?php the_permalink();?>">View </a>
</div>
<?php endwhile; ?>
谢谢!
【问题讨论】:
标签: php post pagination wordpress