2014-02-23 97 views

回答

0

不確定您附加圖片的哪一部分是您遇到問題? 如果它是正確的「側欄」部分,那麼你可以使用foreach循環來調用最新的帖子。

例如:

     <?php 
      global $post; 
      $myposts = get_posts('numberposts=4'); 
      foreach($myposts as $post) : setup_postdata($post); ?> 

       <article> 
        <figure class="post-thumbnail"> 
         <?php the_post_thumbnail(); ?> 
        </figure> 
        <h5><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h5> 
        <small><?php the_time('F jS, Y') ?></small> 
       </article> 

     <?php endforeach; ?> 

,如果它放在左側,將是這樣的:

  <?php 
      global $post; 
      $myposts = get_posts('numberposts=2'); 
      foreach($myposts as $post) : setup_postdata($post); ?> 

       <article> 

        <figure class="post-thumbnail"> 
         <?php the_post_thumbnail(); ?> 
        </figure> 
        <small><?php the_time('F jS, Y') ?></small> 
        <h5><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h5> 
        <p><?php echo substr(get_the_excerpt(), 0,160); ?></p> 

       </article> 

     <?php endforeach; ?> 

希望它有助於