21 Aug 08 _ WordPress SEO Tips – H1 and Title Tags

By Katy
in BlogTorials
A recent WordPress blog integration for Lisbe Partners lead me to consider some Search Engine Optimization decisions that WordPress makes in it templates and here I share modifications.
1. Headings!
WordPress Default template lists Post Titles as <h2> in order to reserve <h1> for your Blog Title. At AWP we like to use <h1> for unique page content titles, so the first main text you see on the page is <h1>. We generally have great SEO ratings, so we are going to stick with that strategy.
The template files, archive.php, links.php, page.php, single.php and search.php can be changed directly. To affect the heading tags for posts, you will need to insert some conditional code in index.php (or post.php, since this file can be used on the single post, the post category list views, and some times the home page). In the following example <h4>’s are used as the list view headings.
<<?php echo (is_single() || is_home()) ? "h1" : "h4"; ?> class="title">
<a id="post-<?php the_ID(); ?>" href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?>
</a>
</<?php echo (is_single() || is_home()) ? "h1" : "h4"; ?>>
Insert this into the beginning of index.php. (Modified from geniosity musings)
2. Page Title
Another SEO measure we’ve implemented at AWP is ordering titles with specific content first in the browser title bar. For example, if we are several layers deep, the title goes “Page Title _ Sub-Section _ Section _ Website Name,” etc. For more of an explanation, see Web Designer Wall (go to #7).
For interior pages WordPress Default theme uses “Blog Title > Category > Post Name,” which is not Search Engine friendly. To improve this, I borrowed code from The Blueprint Theme which integrates the Google Blueprint framework into WordPress (which I also used in my blog template).
<title><?php wp_title(''); ?> <?php if ( !(is_404()) && (is_single()) or (is_page()) or (is_archive()) ) { ?> | <?php } ?> <?php bloginfo('name'); ?></title>
So, now we get “Post Name > Blog Title.” Happy SEO improving!









September 6th, 2008 at 11:50 am
You’re right on. Couldn’t have said it better myself. -Pete
October 8th, 2008 at 12:46 pm
Thanks Katy, I’m always looking for ways to improve my SEO.
October 9th, 2008 at 6:12 pm
Oh man, H1 titles can do SOOOO much for your rankings.
Just adding a H1 tag to one of my pages boosted 3 positions up in Google.
December 30th, 2008 at 3:16 pm
This was great piece of advice. H1 tags have been one weak spot on wordpress when it comes to SEO. Maybe we get this right as wordpress default in the future.
February 20th, 2009 at 7:54 am
Thank you, i have been wondering about the title tags now for a while, it definatly is not SEO friendly the way that wordpress arranges it..
Thank you for the help
keep it up
March 9th, 2009 at 4:17 am
nice article.. thanks
March 15th, 2009 at 10:14 am
For the 2nd code that you have placed; where do I insert this in index.php? Do I replace the other title code, or just add this in the beginning?
Great article. Thank you.
March 15th, 2009 at 10:17 am
http://www.netconcepts.com/seo-title-tag-plugin/
Also, is this another solution I could use? Or would it be better that I insert the code?
March 17th, 2009 at 2:25 pm
wow, definitely giving this a shot later this week. will comment back with results!
November 16th, 2009 at 11:20 am
i have been using Wordpress for 2 years but i still dont know how to do SEO using Wordpress, is there an SEO pluggin for Wordpress?.