0

This other stack postとまったく同じ問題があります。これで返信者が何を意味するのか理解できません。OPと同じように見えるカスタムループで例を試しましたが、ページネーションが機能しません。表示されません。

このループにもこの問題があります。

$attr = array(
    'align' => 'left',
    'class' => 'thumbnail imageRight',
    'width' => 350,
    'height' => 350
);

if(have_posts()){
    while(have_posts()){
        the_post();
        ?>
        <div class="post">
            <?php the_post_thumbnail('medium', $attr); ?>
            <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
            <p><?php the_excerpt(); ?></p>
        </div>
        <?php
    }

    next_posts_link('&laquo; Older Entries');
    previous_posts_link('Newer Entries &raquo;');
}

ページネーションがまったく表示されない場合、上下に何かをエコーすると、エコーされたテキストが表示されますが、ページネーションのリンクは表示されません....

ページごとに 3 つの投稿を表示するように WP を設定しました。データベースには 45 を超える投稿があります。

4

1 に答える 1