PHP Wordpress中的多个循环和分页

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress中的多个循环和分页相关的知识,希望对你有一定的参考价值。

<?php
      $page = (get_query_var('paged')) ? get_query_var('paged') : 1;
      query_posts("paged=$page&posts_per_page=5"); ?>
      
	<?php $count = 1; // Sets count to 1 on first output post ?>
		
		<?php while (have_posts()) : the_post(); ?>
                       
     <?php if ((!is_paged()) && ($count == 1 || $count == 2)){ // THIS STARTS FULL CONTENT IF IS FIRST POST AND NOT PAGED, THE OR OTHER COUNT ALLOWS FOR SHOWING MORE THAN ONE OF THE FULL CONTENT POSTS BEFORE GOING TO EXCERPTS ?>
                            
                    <?php the_content(); ?>
                    
                    <?php } else { // THIS ends FULL CONTENT and SHOWS FOLLOWING POSTS ELSE ?>
                    
                    <?php the_excerpt(); ?>

<?php } $count++; // THIS IS the END of ELSE and sets count one up ?>
                    
               
                
	<?php endwhile; ?>

	<div class="navigation">
	<div class="next-posts"><?php next_posts_link('« Older Entries') ?></div>
	<div class="prev-posts"><?php previous_posts_link('Newer Entries »') ?></div>
</div>

以上是关于PHP Wordpress中的多个循环和分页的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress自定义循环与分页

PHP WordPress:自定义循环w /分页

如何改进我的查询以防止“PHP 致命错误:允许的内存大小”(laravel 5.2 中的排序和分页)

php 查询和分页

php实现搜索和分页效果-亲测有效

php 示例API具有特定列和分页Laravel没有Dingo