Skip to content

Instantly share code, notes, and snippets.

@crova
Created July 5, 2017 12:11
Show Gist options
  • Save crova/b8c403b040084b119a32478c85cb56a2 to your computer and use it in GitHub Desktop.
Save crova/b8c403b040084b119a32478c85cb56a2 to your computer and use it in GitHub Desktop.
How to make 2 buttons out of those options "previous" and "next" ?
<?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'=>'&laquo; P&aacute;gina anterior',
'nextpagelink'=>'Continuar lendo &raquo;',
) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment