i have some posts split using the <!--nextpage--> code.
currently im using:
<?php wp_link_pages('before=&after='); ?>
which gives me a little line of links:
1 2 3 4 5 etc.
what i'd really like is to be able to replace "1" with "words" and then start with 1,2,3,4 etc. so i end up with the links:
words 1 2 3 4 etc.
I've tried doing a PHP string replace but no luck...
Is there ANY way i can do this?
any help much appreciated.
cheers.