X_NOTE
2012年8月30日木曜日
(wordpress)最新の記事のみ違う表示やCSSを効かす。
(wordpress)最新の記事のみ違う表示やCSSを効かす。
<?php $first = true; if(have_posts()){ while(have_posts()){ the_post(); echo '<dl>'; if($first){ $first = false; echo '<dt id="firstNews">' . get_the_date('Y.m.d') . '</dt>' . '<dd id="firstNews">' . get_the_content() . '</dd>'; }else{ echo '<dt>' . get_the_date('Y.m.d') . '</dt>' . '<dd>' . get_the_content() . '</dd>'; } echo '</dl>'; } } ?>
<参考URL>
http://ja.forums.wordpress.org/topic/3562
0 件のコメント:
コメントを投稿
次の投稿
前の投稿
ホーム
登録:
コメントの投稿 (Atom)
0 件のコメント:
コメントを投稿