“works”と”news”とゆうカスタム投稿タイプから最新の記事5件の投稿日と記事タイトルを取得してホーム画面に表示させています。 こんな感じです。 ・2011.12.1 記事のタイトル5 ・2011.11.30 記事のタイトル4 ・2011.11.29 記事のタイトル3 ・2011.11.28 記事のタイトル2 ・2011.11.27 記事のタイトル1 コードは下記の様に書いています。 <ul> <?php query_posts( array( 'post_type' => array('works','news'), 'posts_per_page' => 5 )); ?> <?php if (have_posts()) : while(have_posts()) : the_post(); ?> <li> <?php the_time('Y.n.j'); ?> <a href="