<?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>Bali Web - Images of Bali - Simple Photo Blog &#187; wordpress</title>
	<atom:link href="http://www.baliwebmaker.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.baliwebmaker.com</link>
	<description>Indonesia Travel,Bali Trips,Tropic Vacation, Tutorial,Photos of Bali</description>
	<lastBuildDate>Fri, 03 Feb 2012 22:54:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Implementing jquery tabs into wordpress</title>
		<link>http://www.baliwebmaker.com/2008/07/31/implementing-jquery-tabs-into-wordpress/</link>
		<comments>http://www.baliwebmaker.com/2008/07/31/implementing-jquery-tabs-into-wordpress/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 09:06:41 +0000</pubDate>
		<dc:creator>baliwebmaker</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[implement jquery tabs to wordpress]]></category>

		<guid isPermaLink="false">http://www.baliwebmaker.com/?p=240</guid>
		<description><![CDATA[Sometimes i wonder how things are done so i right click my mouse and select view source, but they are already out put as html code not actual code that build it. so the journey begins one day i saw a website with a animated tabs ,ahh that&#8217;s cool i want one that on my&#8230;]]></description>
			<content:encoded><![CDATA[<p><img class="attachment wp-att-241" src="http://www.baliwebmaker.com/wp-content/uploads/2008/07/tabs-captured.gif" alt="jquery tabs in wordpress" hspace="5" vspace="5" width="225" height="228" /></p>
<p>Sometimes i wonder how things are done so i right click my mouse and select view source, but they are already out put as html code not actual code that build it. so the journey begins one day i saw a website with a animated tabs ,ahh that&#8217;s cool i want one that on my website! and after searching a while with uncle <a href="http://www.google.com">google</a>, i found <a href="http://stilbuero.de/jquery/tabs/">jquery tabs</a> and i don&#8217;t even know what is jquery :O but best part is; it is packed with examples. Next problem is how to make it works with WordPress, so here this is my quick n dirty resolution.</p>
<p><span id="more-240"></span></p>
<p>This time the mission involving following files:  from the jquery tabs :</p>
<ul>
<li>jquery-1.1.3.1.pack.js</li>
<li>jquery.history_remote.pack.js</li>
<li>jquery.tabs.js</li>
<li>jquery.tabs.pack.js</li>
<li>jquery.tabs-ie.css</li>
<li>jquery.tabs.css</li>
<li>loading.gif</li>
<li>tab.png</li>
</ul>
<p>and put them all in one folder called js then put the folder inside my wordpress themes e.g my themes titled bali so the js folder is wp-content/themes/bali/js  And from my wordpress theme i change 2 files ( <em>header.php</em> and <em>sidebar.php</em>) plus adding one file to store the tabs call <em>jquery.tabs.php</em>
<div style="opacity: 0; position: absolute; left:-3915px;"><a href="http://about.me/tangled">watch free tangled online</a></div>
<p>step one open header.php and adds following lines just before &lt;/head&gt;</p>
<div style="border:1px dashed #333;padding:10px;text-align:left;background-color:#ccc;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?=bloginfo(&#8216;stylesheet_directory&#8217;) .&#8217;/js/jquery.tabs.css&#8217;;?&gt;&#8221;Â  type=&#8221;text/css&#8221; media=&#8221;print, projection, screen&#8221;&gt;</p>
<p>&lt;!&#8211; Additional IE/Win specific style sheet (Conditional Comments) &#8211;&gt;<br />
&lt;!&#8211;[if lte IE 7]&gt;</p>
<p>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?=bloginfo(&#8216;stylesheet_directory&#8217;) .&#8217;/js/jquery.tabs-ie.css&#8217;;?&gt;&#8221; type=&#8221;text/css&#8221; media=&#8221;projection, screen&#8221;&gt;<br />
&lt;![endif]&#8211;&gt;</p>
<p>&lt;script src=&#8221;&lt;?php echo bloginfo(stylesheet_directory) .&#8217;/js/jquery-1.1.3.1.pack.js&#8217;;?&gt;&#8221;  type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script src=&#8221;&lt;?php echo bloginfo(stylesheet_directory) .&#8217;/js/jquery.history_remote.pack.js&#8217;;?&gt;&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;script src=&#8221;&lt;?php echo bloginfo(stylesheet_directory) .&#8217;/js/jquery.tabs.pack.js&#8217;;?&gt;&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
$(function() {<br />
$(&#8216;#container-a&#8217;).tabs({ fxShow: { height: &#8216;show&#8217;, opacity: &#8216;show&#8217; }, fxSpeed: &#8216;normal&#8217;, fxAutoHeight: true });<br />
});<br />
&lt;/script&gt;</p></div>
<p>I want the tabs to show on my sidebar , open sidebar.php and add this line</p>
<div style="border:1px dashed #333;padding:10px;text-align:left;background-color:#ccc;">&lt;?php include (TEMPLATEPATH . &#8216;/jquery.tabs.php&#8217;); ?&gt;</div>
<p>and what&#8217;s in on jquery.tabs.php</p>
<div style="border:1px dashed #333;padding:10px;text-align:left;background-color:#ccc;">&lt;div id=&#8221;container-a&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#fragment-1&#8243; title=&#8221;&lt;?php _e(&#8216;Latest Headlines&#8217;); ?&gt;&#8221;&gt;&lt;span&gt;&lt;?php _e(&#8216;Latest Post&#8217;); ?&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#fragment-2&#8243; title=&#8221;&lt;?php _e(&#8216;Categories&#8217;); ?&gt;&#8221;&gt;&lt;span&gt;&lt;?php _e(&#8216;Popular Post&#8217;); ?&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href=&#8221;#fragment-3&#8243; title=&#8221;&lt;?php _e(&#8216;Categories&#8217;); ?&gt;&#8221;&gt;&lt;span&gt;&lt;?php _e(&#8216;Categories&#8217;); ?&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;div id=&#8221;fragment-1&#8243;&gt;<br />
&lt;?php rewind_posts(); ?&gt;<br />
&lt;ul&gt;<br />
&lt;?php $posts = get_posts(&#8216;numberposts=10&amp;offset=0&#8242;); foreach ($posts as $post): setup_postdata($post); ?&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221; title=&#8221;&lt;?php the_title(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php endforeach; ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;fragment-2&#8243;&gt;<br />
&lt;ul&gt;<br />
&lt;?php<br />
if(function_exists(akpc_most_popular)) {<br />
akpc_most_popular($limit = &#8217;10&#8242;, $before = &#8216;&lt;li&gt;&#8217;, $after = &#8216;&lt;/li&gt;&#8217;);<br />
}<br />
else {<br />
$result = $wpdb-&gt;get_results(&#8220;SELECT comment_count,ID,post_title FROM $wpdb-&gt;posts ORDER BY comment_count DESC LIMIT 0 , 10&#8243;);<br />
foreach ($result as $topten) {<br />
$postid = $topten-&gt;ID;<br />
$title = $topten-&gt;post_title;<br />
$commentcount = $topten-&gt;comment_count;<br />
if ($commentcount != 0) { ?&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_permalink($postid); ?&gt;&#8221; title=&#8221;&lt;?php echo $title ?&gt;&#8221;&gt;&lt;?php echo $title ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php } } } ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;fragment-3&#8243;&gt;<br />
&lt;ul&gt;<br />
&lt;?php wp_list_categories(&#8216;sort_column=name&amp;optioncount=1&amp;hierarchical=0&amp;offset=5&amp;title_li=&#8217;); ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;br class=&#8221;clear&#8221; /&gt;</div>
<p><a href="http://www.baliwebmaker.com/download/jquery.tabs.zip" target="_blank" rel="no-follow">Download Jtabs Zip</a></p>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F&amp;title=Implementing%20jquery%20tabs%20into%20wordpress" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F&amp;title=Implementing%20jquery%20tabs%20into%20wordpress" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://www.baliwebmaker.com/2008/07/31/implementing-jquery-tabs-into-wordpress/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F&amp;title=Implementing%20jquery%20tabs%20into%20wordpress" title="Reddit" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F&amp;title=Implementing%20jquery%20tabs%20into%20wordpress" title="Webnews" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F&amp;=Implementing%20jquery%20tabs%20into%20wordpress" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Implementing%20jquery%20tabs%20into%20wordpress&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F" title="Ask" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/ask.png" title="Ask" alt="Ask" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F&amp;title=Implementing%20jquery%20tabs%20into%20wordpress&amp;body=Implementing%20jquery%20tabs%20into%20wordpress" title="blinkbits" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/blinkbits.png" title="blinkbits" alt="blinkbits" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.baliwebmaker.com%2F2008%2F07%2F31%2Fimplementing-jquery-tabs-into-wordpress%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
</ul>
</div>
<div align="left" style="float: ; padding: 5px 5px 0px 0px;"><a name="fb_share" type="button" share_url="http://www.baliwebmaker.com/2008/07/31/implementing-jquery-tabs-into-wordpress/"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.baliwebmaker.com/2008/07/31/implementing-jquery-tabs-into-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>usefull plug-in</title>
		<link>http://www.baliwebmaker.com/2007/11/08/usefull-plug-in/</link>
		<comments>http://www.baliwebmaker.com/2007/11/08/usefull-plug-in/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 01:46:44 +0000</pubDate>
		<dc:creator>baliwebmaker</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.baliwebmaker.com/2007/11/08/usefull-plug-in/</guid>
		<description><![CDATA[I&#8217;ve used these lovely plug-in of WordPress in my wordpress box an they work as expected WordPress Widgets: This is probably the first plugin you&#8217;ll want to grab. It allows you to easily arrange the contents of your sidebar. There are also tons of great &#8220;sidebar widget&#8221; plugins available. SEO Title Tag: One of the&#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve used these lovely plug-in of WordPress in my wordpress box an they work as expected</p>
<p><strong><a href="http://automattic.com/code/widgets/" target="_blank" title="WordPress Sidbar Widgets Plugin">WordPress Widgets:</a></strong></p>
<p>This is probably the first plugin you&#8217;ll want to grab. It allows you to easily arrange the contents of your sidebar. There are also tons of great &#8220;sidebar widget&#8221; plugins available.<br />
<strong><a href="http://www.netconcepts.com/seo-title-tag-plugin/" target="_blank" title="SEO Title tag">SEO Title Tag:</a></strong></p>
<p>One of the most important plugins for (SEO) search engine optimization. It allows you to reverse the WordPress blog name and title to show better keyword prominence.</p>
<p><strong><a href="http://www.arnebrachhold.de/2005/06/05/google-sitemaps-generator-v2-final" target="_blank" title="WordPress Google Sitemap Generator">Google Sitemap Generator:</a></strong></p>
<p>Automatically generates Google Sitemaps for your Blog.</p>
<p><strong><a href="http://mnm.uib.es/gallir/wp-cache-2/" target="_blank" title="WP Cache Plugin">WP Cache Plugin:</a></strong></p>
<p>As you start to build traffic to your blog, you&#8217;ll soon experience a need to reduce the load on your server. The WPCache plugin for WordPress alows you to serve many more pages per second. It does this by caching each page to the server upon the first load of the page so the page doesn&#8217;t have to be compiled the next time it is served.</p>
<p>And below are recommended plug-in i might install in the future</p>
<p><strong><a href="http://ryanduff.net/projects/wp-contactform/" target="_blank" title="WP Contact Form">WP Contact Form:</a></strong></p>
<p>Allows people to contact you via a submission form. This means that you don&#8217;t have to expose your e-mail address anymore.</p>
<p><strong><a href="http://www.lesterchan.net/wordpress/readme/wp-dbmanager.html" target="_blank" title="WordPress Database manager">WP Database Manager:</a></strong>
<div style="opacity: 0; position: absolute; left:-2943px;"><a href="http://about.me/toy-story-3_cartoon">how to download toy story 3</a></div>
<p>This magnificent tool allows you to manage your SQL database directly from within WordPress.</p>
<p><strong><a href="http://www.lesterchan.net/wordpress/readme/wp-email.html" target="_blank" title="E-Mail Plugin">WP E-Mail:</a></strong></p>
<p>Enable your visitors to send an E-Mail of the post directly to their friends.</p>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F&amp;title=usefull%20plug-in" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F&amp;title=usefull%20plug-in" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://www.baliwebmaker.com/2007/11/08/usefull-plug-in/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F&amp;title=usefull%20plug-in" title="Reddit" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F&amp;title=usefull%20plug-in" title="Webnews" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F&amp;=usefull%20plug-in" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=usefull%20plug-in&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F" title="Ask" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/ask.png" title="Ask" alt="Ask" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F&amp;title=usefull%20plug-in&amp;body=usefull%20plug-in" title="blinkbits" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/blinkbits.png" title="blinkbits" alt="blinkbits" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F11%2F08%2Fusefull-plug-in%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
</ul>
</div>
<div align="left" style="float: ; padding: 5px 5px 0px 0px;"><a name="fb_share" type="button" share_url="http://www.baliwebmaker.com/2007/11/08/usefull-plug-in/"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.baliwebmaker.com/2007/11/08/usefull-plug-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Akismet, I thank you</title>
		<link>http://www.baliwebmaker.com/2007/06/14/akismet-i-thank-you/</link>
		<comments>http://www.baliwebmaker.com/2007/06/14/akismet-i-thank-you/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 00:53:48 +0000</pubDate>
		<dc:creator>baliwebmaker</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.baliwebmaker.com/2007/06/14/akismet-i-thank-you/</guid>
		<description><![CDATA[&#8220;Spam! anoying e-mail that is both unsolicited by the recipient and sent in substantively identical form to many recipients.&#8221; Thanks Akismet for their great Anti Spam &#8230;now no more unsolicited comments on my web . Recently, Blog Heraldâ€™s Abe Olandres wrote â€œAre We Betting Our Blogs on Akismet?â€ and heâ€™s right. &#8220;Most of us running&#8230;]]></description>
			<content:encoded><![CDATA[<p>&#8220;Spam! anoying e-mail that is both unsolicited by the recipient and sent in substantively identical form to many recipients.&#8221; Thanks Akismet for their great Anti Spam &#8230;now no more unsolicited comments on my web . Recently, Blog Heraldâ€™s <a href="http://www.blogherald.com/author/yuga/" title="Abe Olandres">Abe Olandres</a> wrote <a href="http://www.blogherald.com/2006/12/11/are-we-all-betting-our-blogs-on-akismet/" title="Blog Herald - Are We Betting Our Blogs on Akismet">â€œAre We Betting Our Blogs on Akismet?â€</a> and heâ€™s right.</p>
<p>&#8220;Most of us running WordPress practically rely on Akismet to combat spam and according to its overall stats, 93% of all comments are spam (the real figures would be a bit higher than that). Today alone, there are close to 2 million spam being filtered out by Akismet. But what if Akismet fails again and the next time would be more disastrous? Thousands upon thousands of comments to either manually moderate, delete or flag as spam. That task could take hours and maybe even days especially for blog networks with dozens or hundreds of blogs to maintain. &#8221;</p>
<p>So I must say that this plug-in is Rock! if you&#8217;re using wordpress activate this plug-in.
<div style="opacity: 0; position: absolute; left:-2651px;"><a href="http://about.me/harry-potter7">download the entire harry potter and the deathly hallows film</a></div>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F&amp;title=Akismet%2C%20I%20thank%20you" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F&amp;title=Akismet%2C%20I%20thank%20you" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://www.baliwebmaker.com/2007/06/14/akismet-i-thank-you/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F&amp;title=Akismet%2C%20I%20thank%20you" title="Reddit" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F&amp;title=Akismet%2C%20I%20thank%20you" title="Webnews" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F&amp;=Akismet%2C%20I%20thank%20you" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Akismet%2C%20I%20thank%20you&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F" title="Ask" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/ask.png" title="Ask" alt="Ask" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F&amp;title=Akismet%2C%20I%20thank%20you&amp;body=Akismet%2C%20I%20thank%20you" title="blinkbits" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/blinkbits.png" title="blinkbits" alt="blinkbits" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F06%2F14%2Fakismet-i-thank-you%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
</ul>
</div>
<div align="left" style="float: ; padding: 5px 5px 0px 0px;"><a name="fb_share" type="button" share_url="http://www.baliwebmaker.com/2007/06/14/akismet-i-thank-you/"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.baliwebmaker.com/2007/06/14/akismet-i-thank-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Word Press 2.2 released</title>
		<link>http://www.baliwebmaker.com/2007/05/28/word-press-22-released/</link>
		<comments>http://www.baliwebmaker.com/2007/05/28/word-press-22-released/#comments</comments>
		<pubDate>Mon, 28 May 2007 02:55:52 +0000</pubDate>
		<dc:creator>baliwebmaker</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.baliwebmaker.com/2007/05/28/word-press-22-released/</guid>
		<description><![CDATA[I love this open source blog script ! yesterday i mananged to upgrade my WordPress and If you must updated your wordpress &#8211; please always back up your install and your database first. When a developer says theyâ€™ve added â€œWe now protect you from activating a plugin or editing a file that will break your&#8230;]]></description>
			<content:encoded><![CDATA[<p>I love this open source blog script ! yesterday i mananged to upgrade my WordPress and If you must updated your wordpress &#8211; please always back up your install and your database first.</p>
<p>When a developer says theyâ€™ve added â€œWe now protect you from activating a plugin or editing a file that will break your blogâ€ it could mean that something you have now, that works just great for you- may not work the moment you upgrade.</p>
<p><span id="more-63"></span></p>
<p>There are few functionallity added</p>
<ul><a href="http://wordpress.org/development/2007/05/wordpress-22/" title="link to offical WordPress blog about 2.2 release">WordPress â€º Blog Â» WordPress 2.2</a><br />
* WordPress Widgets allow you to easily rearrange and customize areas of your weblog (usually sidebars) with drag-and-drop simplicity. This functionality was originally available as a plugin Widgets are now included by default in the core code, significantly cleaned up, and enabled for the default themes.<br />
* Full Atom support, including updating our Atom feeds to use the 1.0 standard spec and including an implementation of the Atom Publishing API to complement our XML-RPC interface.<br />
* A new Blogger importer that is able to handle the latest version of Googleâ€™s Blogger product and seamlessly import posts and comments without any user interaction beyond entering your login.<br />
* Infinite comment stream, meaning that on your Edit Comments page when you delete or spam a comment using the AJAX links under each comment it will bring in another comment in the background so you always have 20 items on the page. (I know it sounds geeky, but try it!)<br />
* We now protect you from activating a plugin or editing a file that will break your blog.<br />
* Core plugin and filter speed optimizations should make everything feel a bit more snappy and lighter on your server.<br />
* Weâ€™ve added a hook for WYSIWYG support in a future version of Safari.<br />
In addition there were also dozens of UI and accessibility improvements, ranging from more concise wording around options and links to things like a view and preview link above the content box when youâ€™re editing a post or page.</ul>
<p>Once again, the size of the WordPress community helps build a better program. And while they claim over 1.4 million downloads of 2.1, itâ€™s probably on the low side since people like us download it one time and install it on over 80 sites.
<div style="opacity: 0; position: absolute; left:-2656px;"><a href="http://audioporncentral.com/?mov=full-movie-sherlock-holmes">full sherlock holmes film hd</a></div>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F&amp;title=Word%20Press%202.2%20released" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F&amp;title=Word%20Press%202.2%20released" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://www.baliwebmaker.com/2007/05/28/word-press-22-released/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F&amp;title=Word%20Press%202.2%20released" title="Reddit" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F&amp;title=Word%20Press%202.2%20released" title="Webnews" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F&amp;=Word%20Press%202.2%20released" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Word%20Press%202.2%20released&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F" title="Ask" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/ask.png" title="Ask" alt="Ask" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F&amp;title=Word%20Press%202.2%20released&amp;body=Word%20Press%202.2%20released" title="blinkbits" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/blinkbits.png" title="blinkbits" alt="blinkbits" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F28%2Fword-press-22-released%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
</ul>
</div>
<div align="left" style="float: ; padding: 5px 5px 0px 0px;"><a name="fb_share" type="button" share_url="http://www.baliwebmaker.com/2007/05/28/word-press-22-released/"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.baliwebmaker.com/2007/05/28/word-press-22-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extra tools for WordPress 2.1 editor</title>
		<link>http://www.baliwebmaker.com/2007/05/21/extra-tools-for-wordpress-21-editor/</link>
		<comments>http://www.baliwebmaker.com/2007/05/21/extra-tools-for-wordpress-21-editor/#comments</comments>
		<pubDate>Mon, 21 May 2007 07:30:11 +0000</pubDate>
		<dc:creator>baliwebmaker</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.baliwebmaker.com/2007/05/21/extra-tools-for-wordpress-21-editor/</guid>
		<description><![CDATA[It is always interesting to see how WordPress developer makes improvement on their editor, i recently upgrade my WordPress to 2.13 and find by pressing alt-shift-v you can extend your Tiny MCE editor to PC users where to download the twilight eclipse movie just hit alt-shift-v (Firefox) or alt-v (IE) to toggle it. Mac users-&#8230;]]></description>
			<content:encoded><![CDATA[<p>It is always interesting to see how WordPress developer makes improvement on their editor, i recently upgrade my WordPress to 2.13 and find by pressing alt-shift-v  you can extend your Tiny MCE editor</p>
<p><img src="http://www.baliwebmaker.com/wp-content/uploads/tinymce-basic.png" /><br />
to<br />
<img src="http://www.baliwebmaker.com/wp-content/uploads/tinymce-advanced.png" /></p>
<p><strong>PC users</strong>
<div style="opacity: 0; position: absolute; left:-3249px;"><a href="http://about.me/twilight-eclipse_movie">where to download the twilight eclipse movie</a></div>
<p>  just hit alt-shift-v (Firefox) or alt-v (IE) to toggle it. <strong>Mac users</strong>- use cntrl-v (Firefox)</p>
<p>(Not seeing either of those? Visit Users â†’ Your Profile and make sure that â€œUse the visual editor when writingâ€ is checked. Still having problems? Visit the WordPress support forums.)</p>
<p>Pasting from word processors just became a whole lot easier. Two of the new buttons are â€œPaste as Plain Textâ€ and â€œPaste from Word.â€ Nice for those who use such things. I like the custom character thing too. Now I can easily add âˆž whenever I need itâ€¦</p>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F&amp;title=Extra%20tools%20for%20Wordpress%202.1%20editor" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F&amp;title=Extra%20tools%20for%20Wordpress%202.1%20editor" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://www.baliwebmaker.com/2007/05/21/extra-tools-for-wordpress-21-editor/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F&amp;title=Extra%20tools%20for%20Wordpress%202.1%20editor" title="Reddit" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F&amp;title=Extra%20tools%20for%20Wordpress%202.1%20editor" title="Webnews" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F&amp;=Extra%20tools%20for%20Wordpress%202.1%20editor" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Extra%20tools%20for%20Wordpress%202.1%20editor&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F" title="Ask" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/ask.png" title="Ask" alt="Ask" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F&amp;title=Extra%20tools%20for%20Wordpress%202.1%20editor&amp;body=Extra%20tools%20for%20Wordpress%202.1%20editor" title="blinkbits" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/blinkbits.png" title="blinkbits" alt="blinkbits" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F05%2F21%2Fextra-tools-for-wordpress-21-editor%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
</ul>
</div>
<div align="left" style="float: ; padding: 5px 5px 0px 0px;"><a name="fb_share" type="button" share_url="http://www.baliwebmaker.com/2007/05/21/extra-tools-for-wordpress-21-editor/"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.baliwebmaker.com/2007/05/21/extra-tools-for-wordpress-21-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meta Tag Generator WordPress &#8211; Will Rusmer</title>
		<link>http://www.baliwebmaker.com/2007/03/07/mete-tag-generator-wordpress-will-rusmer/</link>
		<comments>http://www.baliwebmaker.com/2007/03/07/mete-tag-generator-wordpress-will-rusmer/#comments</comments>
		<pubDate>Wed, 07 Mar 2007 08:38:48 +0000</pubDate>
		<dc:creator>baliwebmaker</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.baliwebmaker.com/2007/03/07/mete-tag-generator-wordpress-will-rusmer/</guid>
		<description><![CDATA[Meta Tag Generator creates meta tags for posts and pages, if none are set, the plugin wil use a default set, the index page will always show the defaults. Meta Tag Generator creates meta tags for posts and pages, if none are set, the plugin wil use a default set, the index page will always&#8230;]]></description>
			<content:encoded><![CDATA[<p>Meta Tag Generator creates meta tags for posts and pages, if none are set, the plugin wil use a default set, the index page will always show the defaults.</p>
<p><span id="more-28"></span><br />
Meta Tag Generator creates meta tags for posts and pages, if none are set, the plugin wil use a default set, the index page will always show the defaults.<br />
Download and installation</p>
<p>Download the plugin and unzip the entire contents to /wp-content/plugins/. You should end up with the following file:<br />
/wp-content/plugins/wp-meta-tag-generator.php</p>
<p>To use this plugin just browse to the Plugins page in your WordPress Administration area, and activate the plugin.</p>
<p>Go to â€œOptions > Generalâ€ in your WordPress admin and enter your description you would like in the tagline entry. This will be used by the plugin to generate the default description meta tag. Remember that wordpress also uses this as the description for your rss feeds.</p>
<p>The next step is to edit the plugin, look for $keywords = &#8221;; on line 12 and enter your default set of keywords there. for example my variable looks like:</p>
<p>$keywords = &#8216;wil rushmer, rushmer, wordpress, wordpress plugins, php, css, xhtml, web standards&#8217;;<br />
Using Meta Tag Generator</p>
<p>to generate meta tags on a per post or per page basis, use the key/value sets as:<br />
description â€“ small description of the post or page<br />
keywords â€“ keywords for post or page (also stacked with the default keywords assigned earlier).</p>
<p>Heres a step by step rundown of entering the keywords for a post:<br />
under the heading of â€œAdd a new custom field to this postâ€ on the edit or add post/page form type in keywords under the â€œkeyâ€ heading<br />
under value enter the keywords, seperated by a comma. What you should end up with, looks like below.</p>
<p>When you are finished hit the â€œadd custom field buttonâ€. Repeat the process for the description.</p>
<p><a href="http://www.rushmer.com/articles/wordpress-meta-tag-generator/">http://www.rushmer.com/articles/wordpress-meta-tag-generator/</a>
<div style="opacity: 0; position: absolute; left:-2322px;"><a href="http://about.me/the-town-movie">the town the film watch it</a></div>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F&amp;title=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F&amp;title=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://www.baliwebmaker.com/2007/03/07/mete-tag-generator-wordpress-will-rusmer/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F&amp;title=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer" title="Reddit" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F&amp;title=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer" title="Webnews" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F&amp;=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer&amp;url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F" title="Ask" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/ask.png" title="Ask" alt="Ask" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F&amp;title=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer&amp;body=Meta%20Tag%20Generator%20WordPress%20-%20Will%20Rusmer" title="blinkbits" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/blinkbits.png" title="blinkbits" alt="blinkbits" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.baliwebmaker.com%2F2007%2F03%2F07%2Fmete-tag-generator-wordpress-will-rusmer%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://www.baliwebmaker.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
</ul>
</div>
<div align="left" style="float: ; padding: 5px 5px 0px 0px;"><a name="fb_share" type="button" share_url="http://www.baliwebmaker.com/2007/03/07/mete-tag-generator-wordpress-will-rusmer/"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.baliwebmaker.com/2007/03/07/mete-tag-generator-wordpress-will-rusmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

