Seo Optimized Wordpress Titles

Sitemap
Free Hits Home Charlotte website design company internet marketing Charlotte NC

Latest Hot Topics

More From This Week

learn seo from the #1 selling book on seo in the world!

Information and experience
Our website is for the most part an informational site with seo tips, webmaster tools, and search engine optimization discussion from our peers. It is our goal to share informatio freely and succeed together with our clients.
Client Recommendation Letters

Recent Visitor Searches
wordpress
affiliates
keywords
search submission
seo coding
search marketing

Professional Ebay Seller
Our team has operated 2 seperate silver level powerseller accounts on Ebay for over a 2 year span.

Small Business Design and Marketing
Freehits.com
Web Design and Search Marketing
Charlotte, NC 28262


Seo Optimized Wordpress Titles

A quick blogger tip for optimizing the header and titles of your pages when working with wordpress.

This is a handy piece of SEO for wordpress that you should use if you havnt put your own solution together already,

This is a very standard mod for wordpress to optimize your title.We personally use this in every one of my WP themes.
Open header.php and find the title tag section and replace it with this:

Code:
<title>
<?php if (is_home () ) {
bloginfo('name');
} elseif ( is_category() ) {
bloginfo('name'); echo " - "; single_cat_title();
} elseif (is_single() || is_page() ) {
single_post_title();
} elseif (is_search() ) {
bloginfo('name'); echo " search results: "; echo wp_specialchars($s);
} else { wp_title('',true); }
?>
</title>

A very quick fix and optimization trick for wordpress that can make a world of difference in your rankings.