Skip to content

Instantly share code, notes, and snippets.

@leocristofani
Created April 9, 2013 22:18
Show Gist options
  • Save leocristofani/5349931 to your computer and use it in GitHub Desktop.
Save leocristofani/5349931 to your computer and use it in GitHub Desktop.
Alguns posts em WordPress possuem mais do que uma página, e precisamos criar oferecer links de navegação entre as páginas do post.
<?php
$post_nav_args = array(
'before' => '<p class="post_navigation"',
'after' => '</p>',
'pagelink' => 'Página %'
);
wp_link_pages($post_nav_args);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment