Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 17, 2012 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/2718947 to your computer and use it in GitHub Desktop.
Save billerickson/2718947 to your computer and use it in GitHub Desktop.
<?php
$link = wp_link_pages( array(
'before' => '<p class="pages">' . __( 'Pages:', 'genesis' ),
'after' => '</p>',
'echo' => false
) );
$link .= wp_link_pages( array(
'before' => '<p class="pages">',
'next_or_number' => 'next',
'after' => '</p>',
'show_all_link' => false,
'echo' => false
) );
echo $link;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment