Brian's slick Wordpress titles for pseudo-indented Google search results
There are plenty of people talking about how you can make your Wordpress blog titles more SEO friendly. No one I’ve found however has mentioned what I’ve stumbled upon by accident. Pseudo-indented listings in Google search results. What I’ve started doing on my blogs is making my title like this:
<title>
<?php if ( is_single() ) { ?> » <? } ?> <?php wp_title(''); ?> <?php if ( is_single() ) { ?> » < ? } ?> < ?php bloginfo('name'); ?>
</title>
This adds a » in front of your post title. The result is that when the search results show up in Google your links look like it stands out more because of the » in the title. It almost makes it look like your site is more official and Google is giving you a little arrow in front of your link to prove it. It won’t effect your rankings as far as I know. Its more of a psychological advantage than anything else but I have no scientific data to back up that claim. Take a look at the title of this post to see an example title.

June 8th, 2007 at 7:53 pm
Since Google allows html escaped characters in their titles it makes me wonder if it would allow some javascript as well. Would it just display the javascript or would the end user’s browser interpret and run the javascript?