Recently - WordPress

Posted on 2006/04/23 日曜日

 最新の記事一覧をこんなコードで表示します。

  <?php query_posts(’showposts=10′); ?>
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  <li>
   <a href=”<?php the_permalink() ?>”><?php the_title() ?></a>
  </li>
  <?php endwhile; endif; ?>

1.php query_posts(’showposts=10′) :

  表示する記事数を設定します。
  showposts= の後に数字を指定します。

2.php if (have_posts()) : while (have_posts()) : the_post(); ?>

 これ見ると分かりますけど、index.phpに必ずある 記事表示用のコードです。 そのまんまパクリ。

3.<a href=”<?php the_permalink() ?>”><?php the_title() ?></a>

 php the_title() で記事のタイトルのみを表示するように指定しています。 投稿日時も表示したい場合には、<?php the_date(); ?>や<?php the_time(); ?>等を追加します。

 これを例えば、下の様なコードで表示させたい場所に加えます。

 <h2>Recently</h2>
 <ul>
  <?php query_posts(’showposts=10′); ?>
  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  <li>
   <a href=”<?php the_permalink() ?>”><?php the_title() ?></a>
  </li>
  <?php endwhile; endif; ?>
 </ul>

 上のコードを使用したサイトの例。 『ESTO*』sidebarで使ってます。

Blink It

No comments have been added to this post yet.

コメントをどうぞ

(必須)

(必須)


Information for comment users
Line and paragraph breaks are implemented automatically. Your e-mail address is never displayed. Please consider what you're posting.

Use the buttons below to customise your comment.


RSS feed for comments on this post | TrackBack URI