Question in wordpress

Please i want to know how i can do one like This which in the photo
?
I want when i get 10 posts in the one page this appear for the visitor ?
For sorry i Dosen't Know what her Name in English ?
And Thanks
 

Attachments

  • Screenshots_2017-03-26-13-55-44.png
    Screenshots_2017-03-26-13-55-44.png
    18.2 KB · Views: 8
PHP:
<nav>
    <ul class="pager">
        <li class="pager"><?php next_posts_link( 'Previous' ); ?></li>
        <li class="pager"><?php previous_posts_link( 'Next' ); ?></li>
    </ul>
</nav>

Use CSS classes to display images instead of text.
 
PHP:
<nav>
    <ul class="pager">
        <li class="pager"><?php next_posts_link( 'Previous' ); ?></li>
        <li class="pager"><?php previous_posts_link( 'Next' ); ?></li>
    </ul>
</nav>

Use CSS classes to display images instead of text.
Thank you Very much
 
Back
Top