NEXT_POSTS_LINK在首页不可见

时间:2018-07-15 作者:cero

我拿不到<?php next_posts_link(); ?> 在第一页(website.com/news)的自定义帖子循环中工作。有趣的是<?php previous_posts_link(); ?> 是否在第二页(website.com/news/page/2/)上工作

这是我的问题:

<div class="col-md-12">
    <h2>News</h2>   

<?php
    $paged = ( get_query_var( \'paged\' ) ) ? get_query_var( \'paged\' ) : 1;
    $the_query = new WP_Query( \'posts_per_page=6&paged=\' . $paged ); 
?>

    <div class="row">   
        <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
            <div class="col-md-4">
                <div class="card">
                    <?php the_post_thumbnail(); ?>
                        <div class="card-body">
                            <h4><a class="newslink" href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
                            <p class="card-text">
        <?php    
        the_excerpt(40,the_date(\'j F, Y\',\'\',\'<br>\'));?>
                            </p>
                 </div>
            </div>
    </div>
        <?php 
        endwhile;
        ?>
<?php next_posts_link(); ?>
<?php previous_posts_link(); ?>
<?php  wp_reset_query(); ?>
</div>
就我而言,我使用的是全球风险值$wp_query 所以我不知道为什么第一页不起作用。

1 个回复
最合适的回答,由SO网友:cero 整理而成

Nvm I使用标准查询修复了它:

    <?php 
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query(\'showposts=6\'.\'&paged=\'.$paged);
?>

    <div class="row">   
        <?php while ($wp_query -> have_posts()) : $wp_query -> the_post(); ?>

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post