For anyone interested, here is a simple hack that will control the TDKs on your index page and generate dynamic TDKs on the rest of your blog pages.
Note... This hack is limited in that the page descriptions and keywords will be the same as the page title but it will get you through until a suitable and working plugin is available.
In header.php find:
Replace it with:Code:<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
You can see it in action here: SEO BulletinCode:<title><?php if(is_home()) : ?><?php bloginfo('name'); ?></title><?php else : ?><?php wp_title('', display); ?> </title><?php endif; ?> <meta name="description" content="<?php if(is_home()) : ?>Insert your index page description here.<?php else : ?><?php wp_title('', display); ?><?php endif; ?>"> <meta name="keywords" content="<?php if(is_home()) : ?>Insert your index page keywords here.<?php else : ?><?php wp_title('', display); ?><?php endif; ?>">


Reply With Quote