Custom page-links for paginated posts | wp_link_pages quicktag
This is going to be kind of hackish, but it is possible using an alternate function. Add this to your theme’s functions.php file. function wp_link_pages_titled($args=””) { $defaults = array( ‘before’ => ‘<p>’ . __(‘Pages:’), ‘after’ => ‘</p>’, ‘link_before’ => ”, ‘link_after’ => ”, ‘echo’ => 1 ); $r = wp_parse_args( $args, $defaults ); extract( $r, … Read more