コピーしました
コピー
<?php /* Template Name: 新着順全記事一覧 */?>
<?php get_header(); // ヘッダーの呼び出し
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<article class="article">
<div id="widget-over-page-article" class="widgets">
<?php dynamic_sidebar( 'widget-over-page-article' ); ?>
</div>
<?php the_content(); //本文の呼び出し?>
<h1>全記事一覧【新着順】</h1>
<?php
$paged = (int) get_query_var('paged');
$args = array(
'posts_per_page' => -1, // 表示件数
'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();
?>
<ul><li class="yokonarabi">
<div class="zenkiji_img">
<a href="<?php echo get_permalink(); ?>">
<?php the_post_thumbnail(); ?>
</div>
<?php the_title(); ?>
</a></li></ul>
<?php endwhile; endif; ?>
<?php wp_reset_postdata(); ?>
</article>
</div>
<?php get_footer(); // フッターの呼び出し
?>