<?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>Busby SEO Test &#187; Busby SEO Test</title>
	<atom:link href="http://zimbarani.edublogs.org/tag/busby-seo-test/feed/" rel="self" type="application/rss+xml" />
	<link>http://zimbarani.edublogs.org</link>
	<description>Another excellent Edublogs.org weblog</description>
	<lastBuildDate>Fri, 21 Nov 2008 02:35:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Search Engine Optimization (SEO) Tips for WordPress</title>
		<link>http://zimbarani.edublogs.org/2008/11/20/search-engine-optimization-seo-tips-for-wordpress/</link>
		<comments>http://zimbarani.edublogs.org/2008/11/20/search-engine-optimization-seo-tips-for-wordpress/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 02:35:08 +0000</pubDate>
		<dc:creator>splud</dc:creator>
				<category><![CDATA[Busby SEO Test]]></category>

		<guid isPermaLink="false">http://zimbarani.edublogs.org/?p=7</guid>
		<description><![CDATA[By Michael Pollock

1. Write keyword rich post titles &#8211; it almost goes without saying, but the post title is the most important part of the blog post for many reasons. From your reader’s perspective, a descriptive and compelling title helps them decide if your post is worth reading or not. From an SEO perspective, think [...]]]></description>
			<content:encoded><![CDATA[<p>By <a title="Posts by Michael Pollock" href="http://www.solostream.com/author/admin/">Michael Pollock</a></p>
<div class="entry">
<p><strong>1. Write keyword rich post titles</strong> &#8211; it almost goes without saying, but the post title is the most important part of the blog post for many reasons. From your reader’s perspective, a descriptive and compelling title helps them decide if your post is worth reading or not. From an SEO perspective, think about the keywords or phrases people might type into a search box to find your post 2 months from now, and use those words or phrases in your post title. For maximum benefit, try to avoid titles that are cute, clever or cryptic.</p>
<p><strong>2. Make your post titles live links</strong> &#8211; many of the WP themes already do this, but if yours doesn’t, you can add the necessary code pretty easily. In your Main Index Template and Page Template, find the code for the post tiltle. It’ll probably look like this:</p>
<p><code>&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;</code></p>
<p>To link your post titles, you’ll want to replace that code with the following (be sure to leave out the “#” symbols):</p>
<p><code>&lt;h2&gt;&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;</code></p>
<p><strong>3. Optimize your permalinks</strong> &#8211; the default WP 2.0 installation displays permalinks this way: http://www.savvysolo.com/?p-123. A more search-engine friendly permalink includes the post title in the link, like this: http://www.savvysolo.com/2006/01/16/keyword-rich-post-title/. This is a simple change to make. In your WP admin panel, click on the “Options” tab, then the “Permalinks” sub-tab, and choose the option just below the “Default” permalink option. See the <a href="http://codex.wordpress.org/Using_Permalinks">WordPress Codex</a> for more on permailinks.</p>
<p><strong>4. Optimize your page titles</strong> &#8211; According to most SEO experts, the page title tag is one of the most important tags on your page. In most WP themes, you’ll find the page title tag in the Header Template, and the default version ususally looks like this:</p>
<p><code>&lt;title&gt;&lt;?php bloginfo('name'); ?&gt;&lt;?php wp_title(); ?&gt;&lt;/title&gt;</code></p>
<p>The best tweak I’ve seen to optimize this tag comes from <a href="http://www.businessblogconsulting.com/2006/01/search-engine-optimizing-this-blog.html">Stephen Spencer</a>, who suggests using the following code for page title tag (omit the “#”):</p>
<p><code>&lt;title&gt;&lt;?php if (is_home()) { print "whatever title I want to have on my blog home page."; } else { wp_title(' '); print " : "; bloginfo('name'); } ?&gt;&lt;/title&gt;</code></p>
<p>This tweak does a couple different things. First, it allows you to use a more descriptive, keyword-rich title for your blog’s main page. And second, for the individual post pages, it will use the title of your post as the page title, which is another reason to follow the advice I mentioned in #1 above.</p>
<p><strong>5. Use the related posts plugin</strong> &#8211; Alex Malov’s <a href="http://www.w-a-s-a-b-i.com/archives/2004/05/26/wordpress-related-entries-plugin/">Related Entries plugin</a> is a neat little addition to any WP blog. Not only does it enhance your blog’s usability, but it also helps create a dense link structure throughout your site, which makes it easier for the search engine spiders to find and index older blog posts.</p>
<p><strong>6. Use the Google sitemap plugin</strong> &#8211; According to Google:</p>
<blockquote><p>“Google Sitemaps is an easy way for you to submit all your URLs to the Google index and get detailed reports about the visibility of your pages on Google.”</p></blockquote>
<p>WordPress user Arne Brachold has made the sitemap creation and submission process fairly simple with his <a href="http://www.arnebrachhold.de/2005/06/05/google-sitemaps-generator-v2-final">Google Sitemap plugin</a>, which was <a href="http://www.arnebrachhold.de/2006/01/07/google-sitemap-generator-for-wordpress-3-beta">recently updated for WP 2.0</a>. This plugin will create a sitemap for you and submit it to Google.</p>
<p>Additionally, Elliot Kosmicki offers <a href="http://ielliott.com/2005/10/31/google-to-yahoo-sitemap/">a script</a> that will convert your Google sitemap into a Yahoo compliant sitemap that you can submit to Yahoo.</p>
<p><strong>7. Add meta keyword tags and Technorati tags to your posts automatically</strong> &#8211; although it’s questionable whether or not meta keywords are still valuable when it comes to SEO, ultimately, they can’t hurt. As far as <a href="http://www.technorati.com/">Technorati</a> tags, they have little impact on SEO, but they can help increase your traffic directly from Technorati, so it’s a good idea to use them.Rick Boakes created the <a href="http://boakes.org/autometa/">Autometa plugin</a> that will add both tags to your posts automatically.</p>
<p>Another simple and effective Technorati tag generator I’ve used is <a href="http://www.broobles.com/scripts/simpletags/">Broobles’ Simple Tags</a> plugin.</p>
<p><strong>8. Validate your code</strong> &#8211; Use the <a href="http://validator.w3.org/">W3C Markup Validation Service</a> to ensure the code behind your pages is clean and valid. If you find your pages have errors in the code, hire or make friends with a savvy web developer to help you clean it up. See Google’s <a href="http://www.google.com/intl/en/webmasters/">Information for Webmasters</a> for more info on creating a technically valid site.</p>
<p>If you have further SEO tips for WordPress blogs, I’d love to hear about them in the comments.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://zimbarani.edublogs.org/2008/11/20/search-engine-optimization-seo-tips-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busby SEO Test</title>
		<link>http://zimbarani.edublogs.org/2008/11/17/busby-seo-test/</link>
		<comments>http://zimbarani.edublogs.org/2008/11/17/busby-seo-test/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 10:38:14 +0000</pubDate>
		<dc:creator>splud</dc:creator>
				<category><![CDATA[Busby SEO Test]]></category>

		<guid isPermaLink="false">http://zimbarani.edublogs.org/?p=3</guid>
		<description><![CDATA[
Busby SEO Test is Keyparse for Busby SEO Worldcup Competition.
BUSBY is proud to invite SEO specialists, guru’s, masters and hot shots to compete over a 4 month period to gain the highest position they can achieve on Google (USA Google Data Center &#8211; http://72.14.207.99)

Prize




First Prize :
$5000


Second Prize :
$2000


Third Prize :
$500


Fourth Prize :
$250


Fifth Prize :
$100





Midway prize [...]]]></description>
			<content:encoded><![CDATA[<div class="post-content">
<p><a href="http://dudi.bliblog.com/"><strong>Busby SEO Test</strong></a> is Keyparse for Busby SEO Worldcup Competition.</p>
<p>BUSBY is proud to invite SEO specialists, guru’s, masters and hot shots to compete over a 4 month period to gain the highest position they can achieve on Google (USA Google Data Center &#8211; <a href="http://72.14.207.99/ie?q=Busby+SEO+Test&amp;num=100&amp;hl=en&amp;as_qdr=all&amp;start=0&amp;sa=N" target="_blank">http://72.14.207.99</a>)</p>
<div id="small_box_seo">
<div class="headerblack_seo"><strong>Prize</strong></div>
<div class="mainblack_seo">
<table style="height: 82px" border="0" width="615">
<tbody>
<tr>
<td>First Prize :</td>
<td>$5000</td>
</tr>
<tr>
<td>Second Prize :</td>
<td>$2000</td>
</tr>
<tr>
<td>Third Prize :</td>
<td>$500</td>
</tr>
<tr>
<td>Fourth Prize :</td>
<td>$250</td>
</tr>
<tr>
<td>Fifth Prize :</td>
<td>$100</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="mainblack_seo">Midway prize &#8211; $1000 to the entrant who has the highest Average ranking on Google (USA Google Data Center &#8211; http://72.14.207.99) this can be measured on Monday 5th January 2009 (12:00 midday), Perth, Western Australia.</div>
<div class="mainblack_seo">Invite The Most Friends:   iPod Touch</div>
<div class="mainblack_seo_small">(Entrant Who Invites The most Friends, Who then Register and compete for the competition)</div>
<div class="mainblack_seo">Most Creative Content : iPod Touch</div>
<div class="mainblack_seo_small">(Entrant who has the most creative content on their website as judged by the Busby panel)</div>
<div class="mainblack_seo_small">
<div id="rules" class="rules">
<p>RULES</p>
<ul>
<li>Start date is 1st October 2008 (12:00 midday), Perth, Western Australia at which point the phrase will be posted on the Busby website.</li>
</ul>
<ul>
<li>End date of 31st January 2009 (12:00 midday), Perth, Western                Australia.</li>
</ul>
<ul>
<li>Only ethical SEO techniques may be engaged and the judges reserve the right to review the techniques engaged by the winner to ensure they comply.</li>
</ul>
<ul>
<li>No pornography, no discrimination and no illegal behaviour is                permitted.</li>
</ul>
<ul>
<li>The competition is only open to domain and sub domain names                that do not include the key phrase in any form.</li>
</ul>
<ul>
<li>Only registered entrants are eligible to compete and win the                prize.</li>
</ul>
<ul>
<li>Registration is free, open to anyone of any age, gender, race and domicile and can only be made through Registration Process.</li>
</ul>
<ul>
<li>All entrants pages must have a visible link back to www.busbywebsolutions.com with the following text (including the hyperlink) in black arial 10 font: Participant in the Busby Web Solutions Search Engine Optimisation Challenge</li>
</ul>
<ul>
<li>Only one prize per person.</li>
</ul>
<ul>
<li>Employees, franchisees and licensees of Busby (and each of their family members) are eligible to enter but are not eligible to win any prizes.</li>
</ul>
<ul>
<li>From time to time rules are added/updated in-line with community feedback to find the most up-to-date rules please click <a href="http://worldcup.busbywebsolutions.com/forums/viewtopic.php?f=9&amp;t=46">here</a>.</li>
</ul>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://zimbarani.edublogs.org/2008/11/17/busby-seo-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
