我正在一个 wordpress 网站上工作,该网站有一个名为的自定义帖子类型,比如说“plops”。我只想在网站中使用这种自定义帖子类型。因此,在 index.php 中,我使用 WP_Query 遍历那些,这里是代码:
<?php
$args = array( 'post_type' => 'plops', 'posts_per_page' => 30, 'orderby' => 'desc');
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
$meta = get_post_meta($post->ID);
?>
// my template for the post...
<?php endwhile; ?>
问题是我想实现一个无限滚动到这个页面,为此我需要有分页链接。我试图用这个next_posts_link()
功能实现那些,但不能让它工作!它只是不会显示任何链接,我尝试了很多东西,似乎没有任何东西可以让它工作......
如果我去 mysite.com/worpress/page/2,我的帖子会显示,但我在 firebug 中得到 404 ......很奇怪......
有任何想法吗 ?非常感谢帮助!非常感谢提前!