アトリエロワ

投稿記事全てのリストをpage.phpに表示【wordpress】

wordpressの投稿記事をカテゴリー別ではなく、全てのカテゴリーの記事をpage.phpでで表示させる方法

‘posts_per_page’ => 10, 1ページに何記事表示させるか

page.phpに下記を記載

<div>
<ul>
<?php
$paged = (int) get_query_var('paged');
$args = array(
'posts_per_page' => 10,
'paged' => $paged,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish'
);
$the_query = new WP_Query($args);
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
?>
<!--↓コンテンツ-->


<li>
<?php the_title(); ?>
■ ■ここに繰り返し表示したい投稿記事■ ■
</li>


<!--↑コンテンツ-->
<?php endwhile; endif; ?>
<?php wp_reset_query();?>
</ul></div>

HOME > wordpress設計術 > 投稿記事全てのリストをpage.phpに表示【wordpress】

wordpress設計術

wordpress設計術