Archive for the ‘WordPress’ Category

Wp Auto Upgrade, not good for big plugins.

I am so glad that wp 2.5.1 has the ability to automatically upgrade plugins because it saves a lot of time and is very neat and tidy. Unfortunately, some of the bigger plugins like cforms or wp-shopping cart tend to mess up if auto-upgraded.
By bigger and big I mean complicated, multi folder/directory plugins with [...]

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