CG
(@du-bist-der-lenz)
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => 10
);
$st_query = new WP_Query( $args );
?>
<?php if ( $st_query->have_posts() ): ?>
<?php while ( $st_query->have_posts() ) : $st_query->the_post(); ?>
<?php the_time( 'Y年m月d日' ); ?><br />
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br />
<?php endwhile; ?>
<?php else: ?>
<p>新しい記事はありません</p>
<?php endif; ?>
posts_per_pageは取得する投稿の数です。
ありがとうございます。
しかしこちらですと、同じ日に複数投稿した場合、
2017/6/23
・記事タイトル1
2017/6/23
・記事タイトル2
2017/6/23
・記事タイトル3
この様な結果になってしまいます。
2017/6/23
・記事タイトル1
・記事タイトル2
・記事タイトル3
この様に表示をしたいと思います。
the_time
等ではなくthe_date
を使えば日付は一度しか出力しません。
テンプレートタグ/the date