• Kenapa ya navigasi artikel saya tidak muncul (next_posts_link dan previous_posts_link), padahal saya sudah set settingan reading-nya (jumlah artikel yang ditampilkan) lebih kecil dari jumlah artikel yang ada.

    Berikut ini kode yang ada di category.php:

    ...
    ...
    <?php
    if (have_posts()) {
    while (have_posts()) : the_post();
      echo '<h2>'; the_title(); echo '</h2>';
      echo '<div id="artikel">'; the_content('baca kelanjutannya »'); echo '</div>';
    endwhile; ?>
    <div class="navigation">
    	<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
    	<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
    </div>
    <?php
    } else {
      echo 'Maaf, Isi Halaman Ini Belum Tersedia!';
    }
    //Reset Query
    wp_reset_query();
    ?>
    ...
    ...
Melihat 3 balasan - 1 sampai 3 (dari total 3)
Melihat 3 balasan - 1 sampai 3 (dari total 3)
  • Topik ‘Navigasi Artikel Tidak Muncul!’ tertutup untuk balasan baru.