Meta title for paginated posts and pages
-
This code helps me to offer different meta titles on paginated categories, archives and main pages of the blog:
<?php if ( is_paged() && $paged != '0' && $paged != '1') { echo (' (Page '.$paged.' ... and may be extra stuff)'); } ?>
I wonder if there is an easy way to do the same for paginated posts and single pages?
- The topic ‘Meta title for paginated posts and pages’ is closed to new replies.