カテゴリーのテンプレ

1
2
3
4
5
6
<?php if (is_category()){ $posts = query_posts($query_string . '&showposts=3000'); } ?>
<?php if(have_posts()):while(have_posts()):the_post();?>
<ul>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <span class="listpostdate">[<?php the_time('Y年m月d日'); ?>]</span></li>
</ul>
<?php endwhile;endif;?>

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です