Hey everybody,
Is there a way of finding if the quicktag "<!--nextpage-->" exist in the content of a post/page?
Hope someone can help.
Hey everybody,
Is there a way of finding if the quicktag "<!--nextpage-->" exist in the content of a post/page?
Hope someone can help.
In the loop, check the $numpages global variable. If it's greater than one, then the post has multiple pages.
Great Otto42 thanks for the hint ;)
If anybody's looking for the same here is the code:
<?php
if ( $numpages > '1' ) :
echo $numpages;
else :
echo no pages;
endif;
?>So does that mean we can't just type "<!--nextpage-->" to create multiple Post pages?
This topic has been closed to new replies.