アーカイブなどで子カテゴリのタイトル一覧を表示するタグ

はてなブックマーク - アーカイブなどで子カテゴリのタイトル一覧を表示するタグ
Post to Google Buzz
Livedoor Clip - アーカイブなどで子カテゴリのタイトル一覧を表示するタグ
Share on FriendFeed
Bookmark this on FC2 Bookmark

<ul>
<?php
foreach((get_the_category()) as $category) {
    $cat_id=$category->cat_ID . ' ';
}
$myposts = get_posts("numberposts=50&category=".$cat_id."&orderby=post_modified");
foreach($myposts as $post) : ?>
    <li><?php echo date("Y.n.j", strtotime($post->post_modified)); ?> : <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li>
<?php endforeach; ?>
</ul>

コメントをどうぞ

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

*

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Copyright