Skip to content

Instantly share code, notes, and snippets.

@gareth-gillman
Created November 2, 2016 18:29
Show Gist options
  • Save gareth-gillman/cf08a6bbb469e000a8fb5441b1614d48 to your computer and use it in GitHub Desktop.
Save gareth-gillman/cf08a6bbb469e000a8fb5441b1614d48 to your computer and use it in GitHub Desktop.
Add Page number to the WordPress page title for SEO benefits
function my_blog_number_title($titletag) {
if( is_paged() ) {
global $wp_query;
$pagenum = $wp_query->query_vars['paged'];
$new_title = $titletag.' Page '.$pagenum;
$titletag = str_replace($titletag, $new_title ,$titletag);
return $titletag;
}
}
add_filter('wp_render_title_tag_filter','custom_wp_render_title_tag');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment