•  
Posts Tagged ‘SEO’

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



Simple SEO: WordPress

By Austin On November 16, 2008 1 Comment

Properly configured, WordPress can be an extremely effective way of designing, maintaining and managing your site. Not only that, but sites using WordPress tend to rank well organically within the top search engines, once properly configured. However, neglecting some critical configurations can cause pages and posts that make up your site to not even be indexed by the major search engines.

Because WordPress is open-source, thousands of developers are constantly releasing updates and plugins to enhance the functionality of the platform — many of which are free. And some of these plugins are essential to properly optimize sites for top organic

Click here to continue reading