分頁

<?php
 $limit = get_option('posts_per_page');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('&showposts=' . $limit = 9 . '&paged=' . $paged . '&cat=9');
$wp_query->is_archive = true;
$wp_query->is_home = false;
if (have_posts()) : while (have_posts()) : the_post();?>
   <div class="pic" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     .....
   </div>
<?php endwhile;endif; ?>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章