Posts Tagged ‘prominence’

SEO Tip for Wordpress Titles

Thursday, June 26th, 2008

Your PAGE title should include your keywords in order to be optimized for search engines. Your POST title should be catchy and written for your visitors. How do you accomplish this in Wordpress?

Get the SEO Title Tag Wordpress plugin. It allows you to have separate titles for your posts and your pages.

Advanced Tip: You’ll also want to check your post template (single.php) and make sure your post titles are using H2 tags and are linking to your Permalink URL.

This will give your post titles more prominence in the search engines. An example code:

<h2 class=’post-title’><a href=”<?php echo get_permalink() ?>” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></a></h2>