如何在wordpress中显示特定数量的帖子

  • 本文关键字:wordpress 显示 php wordpress
  • 更新时间 :
  • 英文 :


这是wordpress的php代码,它显示了id为cat=7的类别中最后15篇文章的结果…如何在缺少前5篇文章后显示10篇文章。。我需要张贴6-15显示,,任何一个指南,,

<?php 
        $news = new WP_Query('cat=7&posts_per_page=15');
        if ($news->have_posts() ) :
            $item_number = 0; 
            while ($news->have_posts() ) : $news->the_post(); 
           get_template_part('content'); ?>  
        <?php   endwhile;
       else : ?>
            <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
        <?php endif;?>

您需要在查询中设置偏移量参数。它将等于你想要跳过的帖子数量。您的WP_Query应该看起来像:

$news = new WP_Query('cat=7&posts_per_page=15&offset=5');

注意,这可能会破坏分页。

相关内容

  • 没有找到相关文章

最新更新