2013-09-27 40 views
0

我想添加分頁到我的頭版最後的帖子,但我一直失敗..! 我的代碼:WordPress的自定義最後的帖子頁面

    <?php 
         $recentPosts = new WP_Query(); 
         $recentPosts->query('showposts=4&cat=3'); 
        ?> 
       <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> 
        <div id="thepost"> 
         <div class="view view-fifth"> 
          <?php if (has_post_thumbnail()) : the_post_thumbnail('thumbnail'); endif; ?> 
         <div class="mask"> 
          <h2>title</h2> 
          <p><?php echo get_the_date(); ?></p> 
         </div> 
        </div> 
        <p class="posttitle"><a class="ajax" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>"><?php the_title(); ?></a></p> 
        <hr class="hr"/> 
        <p class="postcontent"><?php echo substr(strip_tags($post->post_content), 42, 120);?>...&nbsp;<a class="ajax" href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>">more...</a></p> 
        </div> 
       <?php endwhile; ?> 

我有我的ajaxify「更多...」按鈕,所以我想爲分頁做同樣的:) 對不起,我的壞enlish ...

回答

相關問題