Word Pressの投稿ループ処理

ループ

基本のループ(メインループ)

PHP
<?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    <?php endwhile; ?>
<?php endif; ?>

サブループ

PHP
<?php
$args = array(
    'post_type' => 'post',
    'posts_per_page' => 5,
);

$the_query = new WP_Query($args);
?>
<?php if ($the_query->have_posts()): ?>
    <?php while ($the_query->have_posts()): ?>
        <?php $the_query->the_post(); ?>

    <?php endwhile; ?>
    <?php wp_reset_postdata(); ?>
<?php endif; ?>

リセット処理はendwhileの直後に書く


front-page.php

front-page.phpでは、サブループを使わないと表示できない

コメントを残す

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


L o a d i n g . . .