【发布时间】:2017-06-03 22:47:34
【问题描述】:
我有以下代码:
<?php $the_query = new WP_Query( 'posts_per_page=30&post_type=phcl' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<div class="col-xs-12 file">
<a href="<?php echo $file; ?>" class="file-title" target="_blank">
<i class="fa fa-angle-right" aria-hidden="true"></i>
<?php echo get_the_title(); ?>
</a>
<div class="file-description">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; wp_reset_postdata(); ?>
我正在尝试使用paginate_links Wordpress 功能,但无论我把它放在哪里,我都无法让它工作。有人可以帮我解决这个问题吗?
【问题讨论】:
标签: wordpress pagination