Posts Tagged ‘themes’

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’’), [...]

Add an extra sidebar to any WP theme

Jai Verma has written out a very easy to follow tutorial on adding an extra sidebar to any WP theme.
Some people have a gift when it comes to explaining how to do something. Loads of people have written WP tutorials but seem to bury you in terminology so that very few could follow [...]