web,direction,planning,graphicdesign

2011年12月13日火曜日

worpdressで同じ日の記事の日付を表示させる

<dl class="clearfix">
<?php
global $post;
?>
<?php
if($posts): foreach($posts as $post): setup_postdata($post); ?>
<dt><a href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a></dt>
<dd><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></dd>
<?php endforeach; endif;
?>
</dl>

フォロワー