<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CSSJockey.com &#187; WordPress</title>
	<atom:link href="http://www.cssjockey.com/topics/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cssjockey.com</link>
	<description>Unique &#38; Practical Web Presence</description>
	<lastBuildDate>Thu, 19 Aug 2010 16:09:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Enable Auto-Complete Search in WordPress Blog!</title>
		<link>http://www.cssjockey.com/web-development/enable-auto-complete-search-in-wordpress-blog</link>
		<comments>http://www.cssjockey.com/web-development/enable-auto-complete-search-in-wordpress-blog#comments</comments>
		<pubDate>Mon, 09 Mar 2009 21:41:04 +0000</pubDate>
		<dc:creator>CSSJockey</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[free stuff]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cssjockey.com/?p=626</guid>
		<description><![CDATA[<strong>"One sometimes finds what one is not looking for."</strong>
This quote by <strong>Alexander Fleming </strong>explains all what I am going to share with you today. I am pretty sure that you are aware of <strong>Google Search Suggest</strong> and <strong>Yahoo Search Assist</strong> feature. This feature helps you effortlessly find exactly what you’re looking for and no doubt, it lists a few suggestions to keep the user looking for more and more.]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;">&#8220;One sometimes finds what one is not looking for&#8221;</h3>
<p>This quote by <strong>Alexander Fleming </strong>explains all what I am going to share with you today. I am pretty sure that you are aware of <strong>Google Search Suggest</strong> and <strong>Yahoo Search Assist</strong> feature. This feature helps you effortlessly find exactly what you’re looking for. No doubt, it lists a few suggestions to keep the user looking for more and more.</p>
<p>As you type something in the search box, it automatically offers search terms and phrases in real time. How nice will it be to have the same feature on your website or blog. In this post, I am going to explain an easy way to add <strong>search suggestion feature</strong> on your WordPress blog or website.</p>
<h3>Things You’ll Need</h3>
<p><strong>jQuery</strong>:  You can download the lates version from <a title="jQuery" href="http://jquery.com/" target="_blank">jQuery.com</a><br />
<strong>Autocomplete Plugin</strong>: Download this plug-in by Jörn Zaefferer from <a title="jQuery Auto Complete Plug-in" href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/" target="_blank">http://bassistance.de</a></p>
<h3>Now let&#8217;s play with some code</h3>
<p>Include this code within <strong>&lt;head&gt;..&lt;/head&gt;</strong> tag.</p>
<pre name="code" class="HTML">
&lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery.autocomplete.pack.js"&gt;&lt;/script&gt;
&lt;link rel="stylesheet" type="text/css" href="js/jquery.autocomplete.css" media="screen" /&gt;
</pre>
<p>Here I am assuming you are using &#8220;<strong>js</strong>&#8221; folder to keep all your java scripts and supported files. You may need to update the location of these files based on your folder setup.</p>
<p><strong>Here&#8217;s the actual jQuery code to enable this feature on an input box:</strong></p>
<pre name="code" class="HTML">
&lt;script type="text/javascript"&gt;
var data = "Search Terms Separated With Spaces".split(" ");
$("#myInputBox").autocomplete(data);
&lt;/script&gt;
</pre>
<p>Variable <strong>&#8220;data&#8221;</strong> hold the terms that you would like the user to see in the search suggestion list and <strong>$(&#8220;#myInputBox&#8221;)</strong> is the <strong>id</strong> of the search input box.</p>
<p>Let&#8217;s check out how we can automatically call WordPress tags in our search suggestions, using WordPress <strong>wpdb</strong> class:</p>
<pre name="code" class="PHP">
&lt;?php
global $wpdb;
$search_tags = $wpdb-&gt;get_results('SELECT name FROM $wpdb-&gt;terms');
foreach ($search_tags as $mytag){
echo $mytag-&gt;name. ' ';
}
?&gt;
</pre>
<p>Here I am using WordPress <strong>wpdb</strong> class to fetch all tags assigned to the posts.</p>
<p>Here&#8217;s the complete code to enable this feature on your WordPress blog. Just replace the folder name with actual folder and the jQuery selector <strong>$(&#8220;#myInputBox&#8221;)</strong> with the actual id of search input box.</p>
<pre name="code" class="HTML">
&lt;script type="text/javascript" src="&lt;?PHP bloginfo('template_url'); ?&gt;/REPLACE_THIS_WITH_THE_ACTUAL_FOLDER/jquery.autocomplete.pack.js"&gt;&lt;/script&gt;
&lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_url'); ?&gt;/REPLACE_THIS_WITH_THE_ACTUAL_FOLDER/jquery.autocomplete.css" media="screen" /&gt;

&lt;script type="text/javascript"&gt;
$(document).ready(function(){
var data = '&lt;?php global $wpdb; $search_tags = $wpdb-&gt;get_results("SELECT name FROM $wpdb-&gt;terms"); foreach ($search_tags as $mytag){ echo $mytag-&gt;name. " "; } ?&gt;'.split(" ");
$("#ID_OF_SEARCH_INPUT_BOX").autocomplete(data);
})
&lt;/script&gt;
</pre>
<p><a title="Download" href="http://www.cssjockey.com/files/downloads/code/auto-complete/auto-complete-code.zip" target="_blank">Download</a> this file which contains the above mentioned code.</p>
<p>If you face any issues or need help implementing this code on your blog, feel free to post your queries in our <a title="CJ Google Group" href="http://groups.google.com/group/cssjockey" target="_blank">forum</a>. Don&#8217;t forget to add your inputs in the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjockey.com/web-development/enable-auto-complete-search-in-wordpress-blog/feed</wfw:commentRss>
		<slash:comments>45</slash:comments>
		</item>
		<item>
		<title>Why I use WordPress as CMS?</title>
		<link>http://www.cssjockey.com/web-development/wordpress/why-i-use-wordpress-as-cms</link>
		<comments>http://www.cssjockey.com/web-development/wordpress/why-i-use-wordpress-as-cms#comments</comments>
		<pubDate>Mon, 02 Mar 2009 01:07:08 +0000</pubDate>
		<dc:creator>CSSJockey</dc:creator>
				<category><![CDATA[Tools & Apps]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cssjockey.com/?p=566</guid>
		<description><![CDATA[If you think WordPress is just a blogging platform, just take a quick look at other pages of CSSJockey (starting right with the homepage). Think Again!! Could you do off that with a just-blogging-software? Absolutely not! Custom Pages, Custom Widgets, Gallery, Portfolio, eCommerce! What, out of these, and even more hasn't been set up using WordPress.]]></description>
			<content:encoded><![CDATA[<div id="attachment_572" class="wp-caption alignleft" style="width: 190px"><a rel="attachment wp-att-572" href="http://www.cssjockey.com/web-development/wordpress/why-i-use-wordpress-as-cms/attachment/wordpress-as-cms-thumb"><img class="size-full wp-image-572" title="WordPress as CMS" src="http://www.cssjockey.com/wp-content/uploads/2009/03/wordpress-as-cms-thumb.jpg" alt="WordPress as CMS" width="180" height="113" /></a><p class="wp-caption-text">Best CMS, Ever!</p></div>
<p>If you think <a title="WordPress" href="http://www.wordpress.org" target="_blank">WordPress</a> is yet another blogging platform, take a quick look at other pages of CSSJockey (right from the homepage). Do you really think we could do this with  &#8220;Just-Another-Blogging-Software&#8221;? <strong>Absolutely not</strong>!!</p>
<p>Custom Pages, Custom Widgets, Photo Galleries, Portfolio, eCommerce! What, out of these, and even more hasn&#8217;t been set up using WordPress.</p>
<p>Only recently, I updated my <a title="Check out my Portfolio" href="http://www.cssjockey.com/portfolio" target="_self">portfolio</a> with more websites that I had finished, which were not under <a title="Non Disclosure Policy" href="http://www.cssjockey.com/terms-of-use" target="_self">non-disclosure policy</a>. After adding these projects in my portfolio, I realized that in accomplishing 90% of my work, WordPress plays the role of a CMS. With all the work done so far I am amazed by just how much of its capability I have discovered and how much of it is still unknown to me. Here are a few things that my clients ask when I recommend using WordPress, even for static websites, and what I&#8217;ve to say to back my recommendation.</p>
<h3>Is it easy to use?</h3>
<p>It is The Most Robust and Feature-Filled Platform, which is not only easy to use, but also, very much user friendly. So far all my clients are really happy with the decision to use WordPress as a backend. Moreover, WordPress.tv has made our lives much easier. I refer my clients to this website to learn the features and backend functionality while I am busy creating the best solutions for their requirements.</p>
<h3>I need a blog as well&#8230;</h3>
<p>I guess everyone has realized the value of blogging for their personal and professional web presence by now and most of my clients ask for a blogging platform with a unique and custom website design. It&#8217;s really easy to create a few custom pages within WordPress, rather than, creating a WordPress theme that matches the website design. And its really easy to embed WordPress features on these static web pages.</p>
<h3>What about Search Engine Optimization?</h3>
<p>I am pretty sure you are not new to this term and would want your website to be listed in top search results. With WordPress, you can use plugins like <a title="All in One SEO Pack" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank"><strong>All in One SEO Pack</strong></a>, just to name some, that does most of the work without user intervention. SEO is a wide topic and there&#8217;s a lot that needs to be done to achieve good search engine rankings. However, a WordPress installation with a few plugins can help you get there without much hard work. You might want to check a few posts I have written on <a title="Search Engine Optimization" href="http://www.cssjockey.com/topics/seo" target="_blank">search engine optimization</a>.</p>
<h3>What all WordPress can do?</h3>
<p>Honestly, I can&#8217;t deny that after using WordPress I haven&#8217;t even cared to search for any other CMS. WordPress is an amazing platform which can be customized to create Personal websites, Portfolio, e-Commerce, Galleries and Photo Blogs, Magazine or News websites, Article Libraries and a lot more. If you are comfortable with <a title="WordPress Function Reference" href="http://codex.wordpress.org/Function_Reference/" target="_blank">custom functions</a> and <a title="WordPress Template Tags" href="http://codex.wordpress.org/Template_Tags" target="_blank">template tags</a> you can actually do wonders with just a single custom WordPress theme.</p>
<h3>I don&#8217;t know programming?</h3>
<p>While creating websites for my clients, I make sure they don&#8217;t have to spend their valuable time learning xHTML/CSS to update their websites. I have taken WordPress customization to next level where it provides a separate section in admin area to update the front end of our custom themes. It also has <strong><abbr title="What You See Is What You Get">WYSIWYG</abbr></strong> capabilities where you can update and stylize the content which is not a part of WordPress post or page.</p>
<p>Moreover, these custom functions don&#8217;t save any data in core WordPress database tables (wp_options) so there&#8217;s no chance it won&#8217;t work with any other plugins and features.</p>
<p>Here&#8217;s a screenshot of <strong>Custom Theme Options</strong> I provide to make my client&#8217;s life a bit easier.</p>
<div id="attachment_569" class="wp-caption aligncenter" style="width: 597px"><a rel="lightbox" href="http://www.cssjockey.com/wp-content/uploads/2009/03/wordpress-custom-options.jpg"><img class="size-full wp-image-569" title="Wordpress Custom Theme Options" src="http://www.cssjockey.com/wp-content/uploads/2009/03/wordpress-custom-options-post.jpg" alt="Click to Enlarge" width="587" height="558" /></a><p class="wp-caption-text">Click to Enlarge</p></div>
<p>That&#8217;s not all, to add a few more features in the list&#8230;</p>
<ul>
<li>WordPress is Free and Opensource</li>
<li>WordPress is easy to install and upgrade</li>
<li>WordPress is standard compliant</li>
<li>WordPress is Popular (CNET, Ford, ZDNET and various other popular sites has used WordPress as a CMS)</li>
<li>Free support from a vibrant and amazing community of developers and contributors</li>
<li>Huge amount of documentation is available</li>
<li>Plugins are available for almost everything you can think of</li>
</ul>
<p>I bet no other CMS can compete with this master piece. If you are using <strong>WordPress as CMS</strong> please drop your <em><strong>website links</strong></em> in comments. Don&#8217;t try to spam as a very powerful spam protection plugin (<a title="Akismet" href="http://akismet.com/" target="_blank">Akismet</a>) comes with its default installation <img src='http://www.cssjockey.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjockey.com/web-development/wordpress/why-i-use-wordpress-as-cms/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Google Juice: Update Services and Optimize Link Structure</title>
		<link>http://www.cssjockey.com/business/seo/google-juice-ping-update-services-optimize-link-structure</link>
		<comments>http://www.cssjockey.com/business/seo/google-juice-ping-update-services-optimize-link-structure#comments</comments>
		<pubDate>Tue, 27 Jan 2009 13:36:36 +0000</pubDate>
		<dc:creator>CSSJockey</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.cssjockey.com/?p=480</guid>
		<description><![CDATA[This post is second in the <em>Google Juice: Hard To Get But Tasty To Drink</em> series. Here we tell you about Pinging various Site Update Services and Optimizing Link Structures which will help you get your web pages listed in Google search results within 30 minutes.]]></description>
			<content:encoded><![CDATA[<p>Hello again. So, after reading the <a title="Getting Google Juice within 30 minutes" href="http://www.cssjockey.com/seo/search-engine-optimization-google-juice-hard-to-get-but-tasty-to-drink" target="_self">Part 1</a> do you still think getting that tasty Google Juice is all that difficult? No, it isn&#8217;t. You just need to be right with the basics. After talking about WordPress Plugins to assist you in SEO, today we’re going to talk about how to ping <strong>Site Update Services</strong> from your WordPress website and about tuning your web site’s link structure (permalinks).</p>
<h3>Pinging Site Update Services</h3>
<p>As this <a title="WordPress Codex" href="http://codex.wordpress.org/Update_Services" target="_blank">WordPress Codex</a> page explains,</p>
<blockquote><p><strong>Update Services</strong> are tools you can use to let other people know you&#8217;ve updated your blog. WordPress automatically notifies popular Update Services that you&#8217;ve updated your blog by sending a <a title="http://www.xmlrpc.com/" href="http://www.xmlrpc.com/">XML-RPC</a> <a title="Glossary" href="http://codex.wordpress.org/Glossary#PingBack">ping</a> each time you create or update a post. In turn, Update Services process the ping and updates their proprietary indices with <em>your</em> update. Now people browsing sites like Technorati or Sphere can find your most recent posts!</p></blockquote>
<p>There are several <strong>site update services</strong> up and running which you can add in <strong>WP-admin &gt;&gt; Settings &gt;&gt; Writing</strong>, in the <strong>update services</strong> section. Add one service URI per line. Once you update your WordPress website with a new post or new page, these services will automatically be pinged. Then these pings are processed and associated indices (plural of index) are updated with your update.</p>
<p>You can have a list of active update services from this <a title="WordPress Codex" href="http://codex.wordpress.org/Update_Services" target="_blank">WordPress Codex</a> page and copy them into your <strong>update services</strong> section (<strong>WP-admin &gt;&gt; Settings &gt;&gt; Writing</strong>). As easy as that!</p>
<h3>Tuning your website’s permalink structure</h3>
<p>Having title of the post or keywords from the post in the URI of your web page is obviously better than having numbers, question marks and other symbols. Not only humans can identify the subject of the page from its URI but search engines also find it easier to identify and assort web pages in this manner. A link like this: <a title="Nice Links" href="../seo/search-engine-optimization-google-juice-hard-to-get-but-tasty-to-drink" target="_blank">http://www.cssjockey.com/seo/search-engine-optimization-google-juice-hard-to-get-but-tasty-to-drink</a> tells you and Google bots clearly what the page is going to be about. However the WordPress default, which for the same page is <a title="Bad Link Structure" href="../blog/?p=469" target="_blank">http://www.cssjockey.com/blog/?p=469</a> (click to see that it’s actually the same!), which is not at all intuitive.</p>
<p>You can easily figure it out that if you are Google’ing from a specific keyword then obviously the results will list URI with these keywords in the link higher than the URI containing numbers and/or symbols.</p>
<p>Note that this tip is very effective for static websites as well. Always name and link your website and web pages with the title of the page, or keywords relating to the subject of the page instead of serial numbers.</p>
<h3>Customizing permalinks in WordPress</h3>
<p>You can learn further more about what permalinks are and how to use them on <a title="WordPress Codex - Using Permalinks" href="http://codex.wordpress.org/Using_Permalinks" target="_blank">Using Permalinks</a> page of WordPress Codex. The WordPress default link structure, also known as Ugly permalinks structure is the least SEO friendly link structure. However changing your permalinks is easy.</p>
<p>On CSS Jockey and my other websites, I am using <strong>/%category%/%postname% </strong>structure which has remained pretty fruitful for me. You can optimize your own links by following these steps:</p>
<ol>
<li>Login to WordPress Admin Area</li>
<li> Open the Settings Menu and Click Permalinks</li>
<li> Click Custom Structure and customize the link structure.</li>
</ol>
<p>Refer to the <a title="WordPress Codex - Using Permalinks" href="http://codex.wordpress.org/Using_Permalinks" target="_blank">Using Permalinks</a> page to see various tags that you can use.</p>
<p>Please note that websites hosted on Windows based hosts (Microsoft IIS Servers) experience issues setting up SEO friendly pretty permalinks. So in case you’re on such a one, stick to the ugly or almost pretty permalinks to avoid issues, or migrate to a Linux based host.</p>
<p>Pinging maximum number of Site Update Services and tuning your link structure play a good deal to get you listed in Google search results or other search engines in less than 30 minutes! Try implementing these magic tricks on your website and let me know how well did they work out for you.</p>
<p>And for the next part in this series, we are going to discuss how to use various social networks to promote our websites and blogs. We&#8217;ll talk about what all services you can use and how they are important for you and your website. Till then, see you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjockey.com/business/seo/google-juice-ping-update-services-optimize-link-structure/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Google Juice: Hard To Get But Tasty To Drink! Part-1</title>
		<link>http://www.cssjockey.com/business/web-presence/search-engine-optimization-google-juice-hard-to-get-but-tasty-to-drink</link>
		<comments>http://www.cssjockey.com/business/web-presence/search-engine-optimization-google-juice-hard-to-get-but-tasty-to-drink#comments</comments>
		<pubDate>Mon, 26 Jan 2009 10:32:35 +0000</pubDate>
		<dc:creator>CSSJockey</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Presence]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.cssjockey.com/?p=469</guid>
		<description><![CDATA[What is Google juice anyway?
If you've been blogging for a while I am pretty sure you are not new to this term. For everyone else, I'll take a few words to explain what it is and how to get it to save you valuable time and several hours of study and research.]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 310px"><img title="Google Juice - Search Engine Optimization" src="http://cssjockey.com/images/google-juice.jpg" alt="Google Juice - Hard to get tasty to drink!!" width="300" height="300" /><p class="wp-caption-text">Google Juice - Hard to Get But Tasty To Drink!!</p></div>
<h3>What is Google juice anyway?</h3>
<p>If you&#8217;ve been blogging for a while I am pretty sure you are not new to this term. For everyone else, I&#8217;ll take a few words to explain what it is and how to get it to save you valuable time and several hours of study and research.</p>
<p>In <strong>search engine optimization</strong> (SEO) terminology, <strong>Google Juice</strong> is a term which means the unique visitors coming to your website from search engines (primarily Google, because of its domination in Search Engine market). This is also known as organic traffic which only stops by if your website is optimized for search engines like Google, Yahoo, MSN, etc.</p>
<h3>Importance of Google Juice</h3>
<p><strong>The more you get, the better it is for you.</strong> As per a research done by <a title="Forrester.com" href="http://www.forrester.com" target="_blank">forrester.com</a>, <strong>80%</strong> of Internet users find websites by searching for keywords on popular search engines like Google, Yahoo, MSN Live, Ask etc. and it&#8217;s really important that your web pages are listed in the results. If for a particular search term, pages from your website are listed on the first page of the search results then you are going to have loads of visitors stopping by on your website if they are looking for that search term or related stuff.</p>
<p>Pages from your websites stand a chance of getting some visitors even if they are listed on the second or even third page of the search results. Otherwise you shouldn&#8217;t (actually, you can&#8217;t!) expect significant traffic coming in from Search Engines unless the person who&#8217;s looking for something is patient enough to dig a couple of pages of search results for some search term.</p>
<h3>How well are you ranked in Search Engines?</h3>
<p>Technically speaking what makes your web-presence known is by your search engine ranks. Simply put, how well you are known online is determined by the rank your website enjoys in search engine.  Page Rank (PR) by Google is one such important metric assigned to websites listed in Google Search Results which web-masters and advertisers often use to judge the quality of a website. The higher it is (on a scale of 10), the better a website is considered and the higher it is listed in Google Search Engine Results. Obviously, it enjoys more <strong>Google Juice</strong> than lower ranked websites.</p>
<h3>Get listed in Google within 30 minutes</h3>
<p>All those SEO and Make Money Online websites next door will try to show you ways to scale the first page of Search Engine results once you&#8217;re listed but what they won&#8217;t tell you is how to get listed in Google search results within 30 minutes!</p>
<p>We&#8217;ll consider scaling the front page of search results in a later post in SEO series but right now concentrate on how to get your web pages listed so soon.</p>
<p>This post is the first part of this series (<strong>Get Listed in Google within 30 minutes</strong>) and will be focused on websites and blogs built with WordPress as CMS. However, a lot of these tips apply to static websites as well. So, let&#8217;s start sharing best practices&#8230;</p>
<h3>WordPress Plugins and SEO</h3>
<p>With the popularity of WordPress and the contributions by the WP community, managing websites and implementing SEO has become a lot easier. There are various WordPress plug-ins that are available for SEO purposes but the 2 plug-ins I would like to recommend to you are:</p>
<p><strong>1. <a title="Google XML Sitemaps" href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemaps</a></strong><br />
This plug-in will create a Google Sitemaps compliant XML-Sitemap of your WordPress blog. It supports all of the WordPress generated pages as well as custom ones. Every time you edit or create a post, your site map is updated and all major search engines that support the site map protocol, like ASK.com, Google, MSN Search and YAHOO, are notified about the update.</p>
<p>Once you activate this plug-in go to plug-in settings and create the sitemap for first time. You can see the output with this URI: <a title="CSSJockey XML Sitemap" href="http://www.cssjockey.com/sitemap.xml" target="_blank">http://www.your-domain.com/sitemap.xml</a>. Now we have our sitemap ready so let&#8217;s tell Google about it. Type <a title="Google Webmaster Tools - Sitemaps" href="http://www.google.com/sitemaps" target="_blank">http://www.google.com/sitemaps</a> in your browser and login with your Google ID and Password.</p>
<p>On this website you can submit your sitemap to Google and Google will start indexing your website. This process requires site verification where you need to add a Meta tag or upload an HTML file to your web server. It&#8217;s very easy to complete and you can get step by step instructions on Google website.</p>
<p><a title="All in One SEO Pack" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank"><strong>2. All in One SEO Pack</strong></a><br />
This plug-in optimizes your WordPress website/blog for Search Engines. It automatically optimizes page titles for search engines and generates META tags. This avoids the typical duplicate content found on WordPress blogs. For WordPress 2.7 (the latest version) you don&#8217;t even have to look at the options, it works out-of-the-box. You can override any title and set any META description and any META keywords you want while writing the posts or pages. You can fine-tune almost everything related to <strong>search engine optimization</strong>. To get most out of it, do a little keyword research for the content and use best keywords while writing the posts and pages.</p>
<p>Tomorrow, I will further dig into <strong>SEO stuff</strong> relating to getting listed in Google within 30 minutes of updating your blog/website. Next thing I&#8217;ll talk about is services that your WordPress can automatically ping and notify them about updated content. I&#8217;ll also tell you how to fine-tune your link structure (permalinks) as they are not very search engine friendly by default. Stay tuned&#8230;</p>
<h3>UPDATE</h3>
<p>This post was indexed within 8 minutes of being published, publish time was 16:02 and Google indexed this post at 16:10.  Check out the screenshot.</p>
<div class="wp-caption aligncenter" style="width: 597px"><img title="I am enjoying the Google Juice!!" src="http://www.cssjockey.com/images/google-juice-update.jpg" alt="I am enjoying the Google Juice!!" width="587" height="365" /><p class="wp-caption-text">I am enjoying the Google Juice!!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.cssjockey.com/business/web-presence/search-engine-optimization-google-juice-hard-to-get-but-tasty-to-drink/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>
