Beefy SEO Title Tags for WordPress Header.php
WordPress title tags in your theme’s header.php may not be the SEO ideal.
Use the All in One SEO Pack plugin along with this code. Reduces duplicate content on wordpress ecommerce single product pages.
<title><?php
// Page or Single Post
if ( is_page() or is_single() ) {
the_title();
// Category Archive
} elseif ( is_category() ) {
printf( __(’Archive for ‘%s’’), [...]
WordPress title tags in your theme’s header.php may not be the SEO ideal.
Use the All in One SEO Pack plugin along with this code. Reduces duplicate content on wordpress ecommerce single product pages.
<title><?php
// Page or Single Post
if ( is_page() or is_single() ) {
the_title();
// Category Archive
} elseif ( is_category() ) {
printf( __(’Archive for ‘%s’’), [...]