Created
July 5, 2017 12:11
-
-
Save crova/b8c403b040084b119a32478c85cb56a2 to your computer and use it in GitHub Desktop.
How to make 2 buttons out of those options "previous" and "next" ?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
wp_link_pages( array( | |
'before' => '<div class="page-links"><center><p id="post-navigator">' . esc_html__( '', 'extra' ), | |
'after' => '</p></center></div>', | |
'next_or_number'=>'next', | |
'previouspagelink'=>'« Página anterior', | |
'nextpagelink'=>'Continuar lendo »', | |
) ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment