Wordpress get_posts () Paginating

0 Cevap php

Benim wordpress Bu bir şablon sayfa (html kaldırdık), benim wordpress veritabanından mesajları çeker. Onu paginate istiyorum ama hiçbir fikrim yok! (

Ben böyle bir şey almak için wan't

<< İlk Önceki 1 2 3 4 Sonraki Son >>

       <?php
         $postslist = get_posts('numberposts=10&order=ASC');
         foreach ($postslist as $post) : 
            setup_postdata($post);
    ?>

      <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?>   </a></li>
     <li><?php the_excerpt(); ?></li><br/><hr/>

     <?php endforeach; ?>

0 Cevap