I'm using this code, but paragraph tags ( <p> ) are automatically added around it. How do I strip these tags?
<?php wp_link_pages('before=Pages'); ?>
I'm using this code, but paragraph tags ( <p> ) are automatically added around it. How do I strip these tags?
<?php wp_link_pages('before=Pages'); ?>
try:
<?php wp_link_pages('before=Pages&after='); ?>
You must log in to post.