•  
Posts Tagged ‘Google’

Google Highlight

By Austin On January 10, 2009 1 Comment

For those looking for a way to optimize your search results on your WordPress blog. You may want to check out the following plugin. Goolge Highlight

It will highlight or colorize the background of any letter or word that you search for. Head over to the site to see it, or do a search on this site and see it in action.

I want to update: I am going to follow up with at least three more great tricks and plugins you can use to help search you WordPress blog. Click here to continue reading



Disable caching of your site or post

By Austin On January 10, 2009 No Comments

I talked about Disabling search engine on search pages in a previous post using the meta tag. Today lets go over the web bots Cached copy of your site. If you are working on builder your blog, or have a temporary site up, use the following code:

<meta name="robots" content="noarchive">

This will tell any bot to follow your site, index it, but prevents a cached copy of this page from being available in the search results. Click here to continue reading



Disable search engine on search pages

By Austin On January 9, 2009 No Comments

A good idea when trying to get the most out of your blog is usging the meta tag to tell the web bots to search & index your site. But for good SEO you should apply this code in your header.php file of your WordPress blog.

<?php if(is_search()) { ?> <meta name="robots" content="noindex, nofollow" /> <?php }?>

This will keep your site from getting a hit from bots over duplicate entries. :) Click here to continue reading