Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. function wpse24661_filter_wp_title( $title, $separator ) {
  2. // Globalize $page
  3. global $page;
  4.  
  5. // Determine if current post is paginated
  6. // and if we're on a page other than Page 1
  7. if ( $page >= 2 ) {
  8. // Append $separator Page #
  9. $title .= ' ' . $separator . ' ' . 'Page ' . $page;
  10. }
  11. // Return filtered $title
  12. return $title;
  13. }
  14. add_filter( 'wp_title', 'wpse24661_filter_wp_title', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement