記事一覧表示方法メモ

  <?php
  $posts=get_posts(‘numberposts=10 & offset=0′);
  if($post):foreach($posts as $post):setup_postdata($post);
  ?>
  
  <li id=”post-<?php the_ID(); ?>”>
  
  <a href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></a> <span class=”the_time”><?php the_time(‘m.d’);?></span>
   <div class=”storyThumb”>
   <p><?php echo get_the_excerpt(); ?>…</p>
   </div>
  </li>
  <?php
  endforeach; endif;
  ?>

カテゴリ、タグ

trackback :

コメントする?

Powered by WP Hashcash