メインループとサブループ

メインループ

<!-- メインループ -->
<?php if(have_posts()): ?>
<div class="cards">
<?php while(have_posts()): the_post(); ?>
<!-- 繰り返し処理する内容 -->
<article class="card">
<a class="card__link" href="<?php the_permalink(); ?>">
<div class="card__img">
<?php if(has_post_thumbnail()): ?>
<?php the_post_thumbnail('full'); ?>
<?php else: ?>
<img src="<?php echo esc_url(get_theme_file_uri('img/no-image.png')); ?>" alt="">
<?php endif; ?>
</div>
<time class="card__time" datetime="<?php the_time('Y-m-d'); ?>"><?php the_time('Y.m.d'); ?></time>
<h2 class="card__title"><?php the_title(); ?></h2>
<div class="card__content"><?php the_content(); ?></div>
</a>
</article>
<?php endwhile; ?>
</div>
<?php else: ?>
<!-- 投稿データがない場合に表示される部分 -->
<p>投稿が見つかりませんでした。</p>
<?php endif; ?>

 

サブループ

<!-- サブループ -->
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
// 'order' => 'ASC',
// 'orderby' => 'meta_value',
// 'meta_key' => 'furigana'
);
$the_query = new WP_Query($args);
?>
<?php if($the_query->have_posts()): ?>
<div class="cards">
<?php while($the_query->have_posts()): $the_query->the_post(); ?>
<!-- 繰り返し処理する内容 -->
<article class="card">
<a class="card__link" href="<?php the_permalink(); ?>">
<div class="card__img">
<?php if(has_post_thumbnail()): ?>
<?php the_post_thumbnail('full'); ?>
<?php else: ?>
<img src="<?php echo esc_url(get_theme_file_uri('img/no-image.png')); ?>" alt="">
<?php endif; ?>
</div>
<time class="card__time" datetime="<?php the_time('Y-m-d'); ?>"><?php the_time('Y.m.d'); ?></time>
<h2 class="card__title"><?php the_title(); ?></h2>
<div class="card__content"><?php the_content(); ?></div>
</a>
</article>
<?php endwhile; ?>
</div>
<?php else: ?>
<!-- 投稿データがない場合に表示される部分 -->
<p>投稿が見つかりませんでした。</p>
<?php endif; ?>
<?php wp_reset_postdata(); ?>

日付関数

<?php the_time('Y/m/d'); ?> //2018/05/14
<?php the_time('Y年n月j日(l)'); ?> //2018年5月14日(月曜日)
<?php the_time('Y.n.j'); ?> //2018.5.14
<?php the_time('y.n.j'); ?> //18.5.14

 

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です