Cocoon用全記事一覧新着順のテンプレート

コピーしました

コピー

<?php /* Template Name: 新着順全記事一覧 */?>
	<?php get_header(); ?>
<?php //固定ページ内容
get_template_part('tmp/page-contents'); ?>
	<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(); ?>
<?php get_footer(); ?>