<?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>Clazh &#187; Wordpress</title>
	<atom:link href="http://www.clazh.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clazh.com</link>
	<description>Technology &#38; Design</description>
	<lastBuildDate>Thu, 18 Feb 2010 09:27:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Post Wordpress To Twitter Automatically, With Short URLs, No Plugin Required</title>
		<link>http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/</link>
		<comments>http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:09:45 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.clazh.com/?p=410</guid>
		<description><![CDATA[Updated: Found a Fix for the missing post id at the end of the url using $postLink = urlencode  ( $postLink ) ;
Updated: Got rid of the Custom Metadata, used the modified date and the created date of the post to check if its a new post or an old one. Now you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Updated</strong>: Found a Fix for the missing post id at the end of the url using <code>$postLink = urlencode  ( $postLink ) ;</code></p>
<p><strong>Updated</strong>: Got rid of the Custom Metadata, used the modified date and the created date of the post to check if its a new post or an old one. Now you don&#8217;t have to worry about updating your old posts.</p>
<p><strong>Updated</strong>: To Make the title text more Twitter friendly.</p>
<p>I been trying to cut down on the number of Plugins used. Firstly to make maintained easier, secondly to simplify and reduce to the bare minimum without using Plugins, thirdly to hone up my WordPress skills. The latest plugin I got rid of was the WP to Twitter Plugin. Initially I started off trying to modify how I wanted it to work. Basically I wanted to cut off Bit.ly as a URL shortner and use my own blog as a URL shortner to send people directly to my site and keep the traffic on my site without the need for a middle man. I figured this out after I saw how <a rel="nofollow" href="http://labnol.org">Amit Aggarwal</a> was tweeting his links to his site.</p>
<h2>Short URLs in WordPress without Bit.ly or URL Shortners</h2>
<p>We all know that WordPress generates long Permalinks for your site, it automatically converts your titles into those long URLs called permalinks that you see. Example <strong>http://www.clazh.com/this_is_some_random_post</strong>, If you switch off Permalinks in WordPress you&#8217;ll see that links to your posts will be of the form <strong>http://www.clazh.com/?p=401</strong> if you look at it you&#8217;ll notice the last bit has a number attached to it, each post has a unique ID associated to it. The trick is to make use of this ID to and create a URL for our posts, so when people click on this shortned link they&#8217;ll be automatically taken to the Permalink associated with that post its as simple as that.</p>
<h2>A Simple WordPress To Twitter Function.</h2>
<p>First we&#8217;ll write a really simple function that uses CURL to post to the Twitter API.  Just copy paste it into your <code>functions.php</code> file in your WordPress theme directory. In case you don&#8217;t see the file in yours themes folder just create one and paste the code inside it. To check if CURL is enabled on your server you can paste this function into a blank PHP file and call the function like this <code>twitterUpdate("some random post", "http://clazh.com", true);</code> with some random inputs. Make sure you uncomment the last few lines where it says to uncomment to test for CURL support.</p>
<p>Note: In the rare case your host does not support CURL you can always make use of <a href="http://php.net/manual/en/function.fsockopen.php">fsockopen for PHP 4</a> or the much easier <a href="http://www.php.net/manual/en/context.http.php">stream_context_creat for PHP5</a></p>
<pre>function twitterUpdate($postTitle, $postLink, $isNew)
{
	// Enter Your Twitter ID Here
	$username = 'Twitter_ID';
	// Enter Your Twitter Password Here
	$password = 'Password';

        # text into a twitter friendly text
	$code_entities_match = array('--','"','!','@','#','$','%','^','&amp;','*','(',')','_','+','{','}','|',':','"','&lt;','&gt;','?','[',']','\\',';',"'",',','.','/','*','+','~','`','=');
	$code_entities_replace = array('-','','','','','','','','','','','','','','','','','','','','','','','','');
	$postTitle = str_replace($code_entities_match, $code_entities_replace, $postTitle);

	// Check if New or Updated Post
	if($isNew)
		$postTitle = 'New Post: ' . $postTitle;
	else
		$postTitle = 'Updated Post: ' . $postTitle;

	// Calculate Twitter Msg and keep it under 140 Chars
        if(strlen ($postTitle) &gt; (140 - strlen ($postLink)))
		$postTitle 		= substr_replace($postTitle, '...', (140 - 3 - strlen ($postLink)));

	$message = $postTitle . $postLink;

	// The twitter API address
	$url = 'http://twitter.com/statuses/update.xml';
	$curl_handle = curl_init();
	curl_setopt($curl_handle, CURLOPT_URL, "$url");
	curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
	curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($curl_handle, CURLOPT_POST, 1);
	curl_setopt($curl_handle, CURLOPT_POSTFIELDS, "status=$message");
	curl_setopt($curl_handle, CURLOPT_USERPWD, "$username:$password");
	$buffer = curl_exec($curl_handle);
	curl_close($curl_handle);

	// Uncomment the lines below to check if
	// CURL is enabled on your Web Server
	// check for success or failure
	/*
	if (empty($buffer))
		echo 'message';
	else
		echo 'success';
	*/
}</pre>
<h2>WordPress Function that Triggers Post To Twitter</h2>
<p>Next we&#8217;ll write a simple wordpress function that triggers whenever you update or publish a post, we will also added a custom metadata to the post check if its a new or old post. Copy paste this code below the twitterUpdate function in your <code>functions.php</code> themes file.</p>
<pre>function postToTwitter($post_ID)
{
	// Create your Short URL replace with your blog url
	$postLink = ' http://clazh.com/?p=' . $post_ID;
	// encode the URL to fix Post to Twitter issues
        $postLink = urlencode  ( $postLink ) ;
	// Get the Post Object
	$get_post_info 	= get_post( $post_ID );
	// Get the Post Title
	$postTitle = $get_post_info-&gt;post_title;
        // Get the Post date
	$postDate 		= date('U', strtotime($get_post_info-&gt;post_date));
	// Get the post Modified date
	$postModified 	= date('U', strtotime($get_post_info-&gt;post_modified));

	// Check if the post is new or modified
	if($postModified == $postDate)
	{
		twitterUpdate($postTitle, $postLink, true);
	}
	/*  If You want to fire everytime You update
	      a post remove these comments around the else.
	else
	{
		twitterUpdate($postTitle, $postLink, false);
	}
	*/
}

// Post to twitter when you publish or update a post
add_action('publish_post', 'postToTwitter');</pre>
<p>So thats about it, just paste these two blocks of code into your <code>functions.php</code> and change the required parameter, you can play around with the code and modify it to change the message being posted to twitter.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/guest-bloggers-required-sandbox-wordpress-theme-suggestions/' rel='bookmark' title='Permanent Link: Guest Bloggers Required, SandBox Wordpress Theme Suggestions'>Guest Bloggers Required, SandBox Wordpress Theme Suggestions</a></li>
<li><a href='http://www.clazh.com/wordpress-plugin-better-comments-manager-update/' rel='bookmark' title='Permanent Link: Wordpress Plugin Better Comments Manager Update'>Wordpress Plugin Better Comments Manager Update</a></li>
<li><a href='http://www.clazh.com/wordpress-security-alert-adsense-deluxe-vulnerable/' rel='bookmark' title='Permanent Link: Wordpress Security Alert Adsense Deluxe Plugin Vulnerable'>Wordpress Security Alert Adsense Deluxe Plugin Vulnerable</a></li>
<li><a href='http://www.clazh.com/who-sees-ads-10-wordpress-plugin-released/' rel='bookmark' title='Permanent Link: Who Sees Ads 1.0 Wordpress Plugin Released'>Who Sees Ads 1.0 Wordpress Plugin Released</a></li>
<li><a href='http://www.clazh.com/feedsmith-the-official-feedburner-wordpress-plugin/' rel='bookmark' title='Permanent Link: FeedSmith The Official FeedBurner Wordpress Plugin'>FeedSmith The Official FeedBurner Wordpress Plugin</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2009. |
<a href="http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/">Permalink</a> |
<a href="http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/#comments">15 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/&title=Post Wordpress To Twitter Automatically, With Short URLs, No Plugin Required">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/featured/" title="View all posts in Featured" rel="category tag">Featured</a>,  <a href="http://www.clazh.com/category/tutorial/" title="View all posts in Tutorial" rel="category tag">Tutorial</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Notable Free Premium WordPress Themes</title>
		<link>http://www.clazh.com/notable-free-premium-wordpress-themes/</link>
		<comments>http://www.clazh.com/notable-free-premium-wordpress-themes/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 17:59:03 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web-Design]]></category>

		<guid isPermaLink="false">http://www.clazh.com/notable-free-premium-wordpress-themes/</guid>
		<description><![CDATA[Time for showcasing a few notable Free Premium Quality WordPress Themes that caught my eye. With a little a bit of creativity and extra work you could modify these themes to get yourself a free high quality theme.
LeoPress Leopard Inspired WordPress Theme
LeoPress is a free three column WordPress. The design is inspired by Mac OSX [...]]]></description>
			<content:encoded><![CDATA[<p>Time for showcasing a few notable Free Premium Quality WordPress Themes that caught my eye. With a little a bit of creativity and extra work you could modify these themes to get yourself a free high quality theme.</p>
<h2>LeoPress Leopard Inspired WordPress Theme</h2>
<p>LeoPress is a free three column WordPress. The design is inspired by Mac OSX Leopard.</p>
<p>Download Link: <a href="http://www.7graus.com/tech/wordpress/leopress/">Here</a></p>
<p>Preview: <a href="http://www.7graus.com/tech/wordpress/leopress/demo.html">Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/LeoPress_Free_Wordpress_theme.png" /></p>
<h2>Lemon Twist</h2>
<p>A green coloured two column WordPress theme from farfromfearless. Theme was developed for the authors own site and later release to the public to download. The panels in the side block are collapsible, it also has a large footer in the front page to showcase your flickr images and latest posts.</p>
<p>Download Link: <a href="http://www.farfromfearless.com/2007/12/14/fff-lemon-twist-wordpress-theme-v15-released-for-download/">Here</a></p>
<p>Preview Demo: <a href="http://www.farfromfearless.com/">Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/Lemon_Twist_WordPress_theme.png" height="250" width="575" /></p>
<h2>Probama WordPress Theme</h2>
<p>A politically inspired theme supporting Barack Obama. The home page is a two column WordPress theme with a large footer, for single posts and pages the layout switches to a single column layout. The menu supports sub pages and are shown as drop down lists.</p>
<p>Download Link: <a href="http://www.category4.com/2008/03/11/probama-theme-for-wordpress-released/">Here</a></p>
<p>Preview Demo: <a href="http://www.category4.com/wpthemes/probama/">Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/Probama_WordPress_Theme.png" /></p>
<h2>Neoclassical Three Column WordPress Theme</h2>
<p>This a clean Three column WordPress theme with great typography.</p>
<p>Download Link: <a href="http://www.pearsonified.com/2007/11/neoclassical_theme_for_wordpress.php">Here</a></p>
<p>Preview Demo: <a href="http://pearsonified.com/theme/neoclassical/">Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/3-column_template_Neoclassical_Them.png" /></p>
<h2>Massive Mobile</h2>
<p>If you want to display your site or blog in a more user friendly way on the iPhone or PSP you can make use of this free theme.</p>
<p>Download Link: <a href="http://www.wpelements.com/2008/03/06/introducing-massive-news-mobile-edition/">Here</a></p>
<p>Preview Demo: <a href="http://www.wpelements.com/demos/massivemobile/">Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/Massive_Mobile_WordPress_Theme.png" /></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/top-best-free-wordpress-themes-templates/' rel='bookmark' title='Permanent Link: Part2 Top Ten Best Free Wordpress Themes and Templates'>Part2 Top Ten Best Free Wordpress Themes and Templates</a></li>
<li><a href='http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/' rel='bookmark' title='Permanent Link: FreshMedia Free Two Column WordPress Theme.'>FreshMedia Free Two Column WordPress Theme.</a></li>
<li><a href='http://www.clazh.com/best-customizable-multiple-color-styles-wordpress-themes/' rel='bookmark' title='Permanent Link: Best Customizable Multiple Color Styles Wordpress Themes'>Best Customizable Multiple Color Styles Wordpress Themes</a></li>
<li><a href='http://www.clazh.com/coolwater-two-column-free-wordpress-theme/' rel='bookmark' title='Permanent Link: CoolWater Two Column Free WordPress Theme'>CoolWater Two Column Free WordPress Theme</a></li>
<li><a href='http://www.clazh.com/free-magazine-style-wordpress-themes-and-more/' rel='bookmark' title='Permanent Link: Free Magazine Style WordPress Themes And More'>Free Magazine Style WordPress Themes And More</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2008. |
<a href="http://www.clazh.com/notable-free-premium-wordpress-themes/">Permalink</a> |
<a href="http://www.clazh.com/notable-free-premium-wordpress-themes/#comments">12 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/notable-free-premium-wordpress-themes/&title=Notable Free Premium WordPress Themes">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/blogging/" title="View all posts in Blogging" rel="category tag">Blogging</a>,  <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/free/" rel="tag">Free</a>, <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/themes/" rel="tag">Themes</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/notable-free-premium-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>CoolWater Two Column Free WordPress Theme</title>
		<link>http://www.clazh.com/coolwater-two-column-free-wordpress-theme/</link>
		<comments>http://www.clazh.com/coolwater-two-column-free-wordpress-theme/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 19:32:03 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web-Design]]></category>

		<guid isPermaLink="false">http://www.clazh.com/coolwater-two-column-free-wordpress-theme/</guid>
		<description><![CDATA[This is another beautiful free CSS XHTML web template by Styleshout that I really liked and decided to convert into a WordPress Template. The WordPress theme design is called CoolWater. As the name suggests this theme is really clean and has a bright punchy look and feel. The Theme is a two column theme and [...]]]></description>
			<content:encoded><![CDATA[<p>This is another beautiful free CSS XHTML web template by <a href="http://www.styleshout.com/">Styleshout</a> that I really liked and decided to convert into a WordPress Template. The WordPress theme design is called CoolWater. As the name suggests this theme is really clean and has a bright punchy look and feel. The Theme is a two column theme and has support for widgets and is supported for wordpress 2.3 and above. The template is released under a Creative Commons license, Please leave the original designers link intact.</p>
<p>Demo: <a href="http://www.styleshout.com/templates/preview/CoolWater1-0/index.html">Click Here to look at the demo</a>.</p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/coolwater.png" alt="cool water free wordpress theme" height="250" width="575" /></p>
<p>Please link to this page do not link to the download link directly.</p>
<p><code>[download#6#image]</code></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/' rel='bookmark' title='Permanent Link: FreshMedia Free Two Column WordPress Theme.'>FreshMedia Free Two Column WordPress Theme.</a></li>
<li><a href='http://www.clazh.com/clean-a-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Clean A Free Wordpress Theme'>Clean A Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/best-three-column-wordpress-themes-and-more/' rel='bookmark' title='Permanent Link: Best Three Column WordPress Themes And More'>Best Three Column WordPress Themes And More</a></li>
<li><a href='http://www.clazh.com/sandpress-free-wordpress-theme/' rel='bookmark' title='Permanent Link: SandPress Free Wordpress Theme'>SandPress Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/sandpress-071-wordpress-theme-update/' rel='bookmark' title='Permanent Link: SandPress 0.71 WordPress Theme Update'>SandPress 0.71 WordPress Theme Update</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2008. |
<a href="http://www.clazh.com/coolwater-two-column-free-wordpress-theme/">Permalink</a> |
<a href="http://www.clazh.com/coolwater-two-column-free-wordpress-theme/#comments">10 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/coolwater-two-column-free-wordpress-theme/&title=CoolWater Two Column Free WordPress Theme">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/free/" rel="tag">Free</a>, <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/themes/" rel="tag">Themes</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/coolwater-two-column-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>FreshMedia Free Two Column WordPress Theme.</title>
		<link>http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/</link>
		<comments>http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 18:04:03 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/</guid>
		<description><![CDATA[Its been a while since I wrote about WordPress Themes. I saw a beautiful CSS and XTHML Template provided by styleshout.com for free. So I decided to convert it into a WordPress theme and release it. Let me know if you find any bugs. The theme is released under the a Creative Commons Attribution 2.5 [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a while since I wrote about WordPress Themes. I saw a beautiful CSS and XTHML Template provided by <a href="http://styleshout.com">styleshout.com</a> for free. So I decided to convert it into a WordPress theme and release it. Let me know if you find any bugs. The theme is released under the a <a href="http://creativecommons.org/licenses/by/2.5/" rel="license">Creative Commons Attribution 2.5  License</a>. Please leave the original Web Designer link intact as he has requested on his site. The Theme is a two column template with a large footer and has support for widgets both in the sidebar and the footer.</p>
<p>You can view <a href="http://www.styleshout.com/templates/preview/FreshMedia1-0/index.html">the demo here.</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/freshmedia.png" alt="FreshMedia Free WordPress Theme" height="225" width="300" /></p>
<p><code>[download#5#image]</code></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/coolwater-two-column-free-wordpress-theme/' rel='bookmark' title='Permanent Link: CoolWater Two Column Free WordPress Theme'>CoolWater Two Column Free WordPress Theme</a></li>
<li><a href='http://www.clazh.com/clean-a-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Clean A Free Wordpress Theme'>Clean A Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/best-three-column-wordpress-themes-and-more/' rel='bookmark' title='Permanent Link: Best Three Column WordPress Themes And More'>Best Three Column WordPress Themes And More</a></li>
<li><a href='http://www.clazh.com/i3theme-cool-three-column-wordpress-theme/' rel='bookmark' title='Permanent Link: i3Theme Cool Three Column Wordpress Theme'>i3Theme Cool Three Column Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/dezinerfolio-a-dark-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Dezinerfolio A Dark Free Wordpress Theme'>Dezinerfolio A Dark Free Wordpress Theme</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2008. |
<a href="http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/">Permalink</a> |
<a href="http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/#comments">16 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/&title=FreshMedia Free Two Column WordPress Theme.">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/download/" rel="tag">Download</a>, <a href="http://www.clazh.com/tag/free/" rel="tag">Free</a>, <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/themes/" rel="tag">Themes</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/freshmedia-free-two-column-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Reduce Comment Spam To Zero Without Akismet</title>
		<link>http://www.clazh.com/reduce-comment-spam-to-zero-without-akismet/</link>
		<comments>http://www.clazh.com/reduce-comment-spam-to-zero-without-akismet/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 15:32:17 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.clazh.com/reduce-comment-spam-to-zero-without-akismet/</guid>
		<description><![CDATA[My blog used to get around 100-300 spam comments/trackbacks a day while Akismet was doing a great job, but as time went by it became very tedious to go through the comment/trackback spam to make sure no legitimate comments were caught. Using a combination of three WordPress plugins and without the help of Akismet I [...]]]></description>
			<content:encoded><![CDATA[<p>My blog used to get around 100-300 spam comments/trackbacks a day while Akismet was doing a great job, but as time went by it became very tedious to go through the comment/trackback spam to make sure no legitimate comments were caught. Using a combination of three WordPress plugins and without the help of Akismet I have managed to reduce the comment spam to almost zero. I am also listing a few other plugins.</p>
<h2>Plugins for Comment Spam.</h2>
<h3>Simple Spam Filter for WordPress.</h3>
<p><a href="http://tantannoodles.com/toolkit/spam-filter/">Get Simple Spam Filter from here</a>. Most of the spam caught by Akismet is pretty obvious spam i.e.</p>
<ul>
<li>Contains 5 or more links to external sites</li>
<li>Contains nothing but links</li>
<li>Contains [url=http://www.example.com]example[/url] style links (my blog does not support bbcode style links)</li>
<li>Contains a word that matches a short list of common spam words (for example, viagra or cialis). See the pluginâ€™s source for the full list.</li>
</ul>
<p>Simple Spam Filter helps you combat this kind of obvious spam. Its has a setting page where you can tweak it to suit your likings.</p>
<h3>WordPress Comment Spam Stopper.</h3>
<p>This a very simple Plugin that asks a very simple question that bots are too stupid to answer. I have found it even more effective if you change the default question. Get <a href="http://blue-anvil.com/archives/wordpress-comment-spam-stopper-plugin">this plugin from here. </a></p>
<h3>Comment-Policy WordPress Plugin</h3>
<p>This is a alternative to Comment Spam Stopper. Instead of asking the users to enter an answer, you ask the user to agree to your comment policy by having a required field CheckBox. Since its JavaScript based most bots won&#8217;t see it. Get <a href="http://www.g-loaded.eu/2006/04/02/comment-policy-wordpress-plugin/">the plugin from here.</a></p>
<h2>Plugins for Trackback Spam.</h2>
<h3>Extended Comments Options for WordPress.</h3>
<p>While most of the plugins above will take care of comment spam. I found that I was getting tons of Trackback spam, since Trackbacks are not validated by WordPress. Using this plugin you can disable TrackBacks or Comments for your older posts. I have disabled trackbacks for posts older than a month. <a href="http://beingmrkenny.co.uk/wordpress/plugins/extended-comment-options/">You can get this plugin here</a>.</p>
<h3>Simple Trackback Validation Plugin.</h3>
<p>If you don&#8217;t like the idea of disabling trackbacks for your older posts you can use this plugin to validate trackbacks.</p>
<ol>
<li>checks if the IP address of the trackback sender is equal to the IP address of the webserver the trackback URL is referring to.<br />
This reveals almost every spam trackback (more than 99%) since spammers do usually use bots which are not running on the machine of their customers.</li>
<li>retrieves the web page located at the URL included in the trackback. If the page doesnâ€™t a link to your blog, the trackback is considered to be spam. Since most trackback spammers do not set up custom web pages linking to the blogs they attack, this simple test will quickly reveal illegitimate trackbacks. Also, bloggers can be stopped abusing trackback by sending trackbacks with their blog software or webservices without having a link to the post.</li>
</ol>
<p>You can <a href="http://sw-guide.de/wordpress/plugins/simple-trackback-validation/">get the plugin from here. </a></p>
<h3>Antispam Collateral Condolences.</h3>
<p>The last plugin does not combat spam but notifies a commenter in case his/her comment is caught in the spam queue or moderation. I highly recommend <a href="http://txfx.net/code/wordpress/antispam-collateral-condolences/">this plugin get it from here. Â </a></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/the-best-way-to-kill-blog-spam-forever/' rel='bookmark' title='Permanent Link: The Best Way To Kill Blog Spam Forever'>The Best Way To Kill Blog Spam Forever</a></li>
<li><a href='http://www.clazh.com/wordpress-plugin-better-comments-manager-update/' rel='bookmark' title='Permanent Link: Wordpress Plugin Better Comments Manager Update'>Wordpress Plugin Better Comments Manager Update</a></li>
<li><a href='http://www.clazh.com/better-comments-manager-wordpress-plugin/' rel='bookmark' title='Permanent Link: Better Comments Manager Wordpress Plugin'>Better Comments Manager Wordpress Plugin</a></li>
<li><a href='http://www.clazh.com/wordpress-22-has-been-released/' rel='bookmark' title='Permanent Link: Wordpress 2.2 Has Been Released'>Wordpress 2.2 Has Been Released</a></li>
<li><a href='http://www.clazh.com/copy-feed-wordpress-plugin-translated-to-english/' rel='bookmark' title='Permanent Link: Copy Feed Wordpress Plugin Translated To English'>Copy Feed Wordpress Plugin Translated To English</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2008. |
<a href="http://www.clazh.com/reduce-comment-spam-to-zero-without-akismet/">Permalink</a> |
<a href="http://www.clazh.com/reduce-comment-spam-to-zero-without-akismet/#comments">15 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/reduce-comment-spam-to-zero-without-akismet/&title=Reduce Comment Spam To Zero Without Akismet">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/featured/" title="View all posts in Featured" rel="category tag">Featured</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/download/" rel="tag">Download</a>, <a href="http://www.clazh.com/tag/free/" rel="tag">Free</a>, <a href="http://www.clazh.com/tag/plugins/" rel="tag">Plugins</a>, <a href="http://www.clazh.com/tag/wordpress/" rel="tag">Wordpress</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/reduce-comment-spam-to-zero-without-akismet/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Yes WordPress Is Blog Not A CMS Get Over It</title>
		<link>http://www.clazh.com/yes-wordpress-is-blog-not-a-cms-get-over-it/</link>
		<comments>http://www.clazh.com/yes-wordpress-is-blog-not-a-cms-get-over-it/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 05:48:18 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web-Development]]></category>

		<guid isPermaLink="false">http://www.clazh.com/yes-wordpress-is-blog-not-a-cms-get-over-it/</guid>
		<description><![CDATA[I&#8217;ll repeat it WordPress is not a CMS, its a Blog. Its a different issue that it is flexible enough to be used as a CMS. The reason I am using it is because I want a blog not a CMS and I love it because because its the best Blogging software out there. If [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll repeat it WordPress is not a CMS, its a Blog. Its a different issue that it is flexible enough to be used as a CMS. The reason I am using it is because I want a blog not a CMS and I love it because because its the best Blogging software out there. If you want a example of CMS Software then checkout Joomla or Drupal <a href="http://charlesstricklin.com/2008/01/03/graffitti-disses-wordpress/">I fail to see what all the brouhaha is about</a>. So we have a small time competing product built on Microsoft technology marketing itself as better than WordPress anything wrong with that? pointing to C-NET, the New York Times, Ford as examples is inaccurate, they use WordPress mostly for their blogs and do you think they are running the default WordPress setup? The codebase might be WordPress but they would have hired a bunch of developers to modify WordPress and extend it. I read through Graffiti&#8217;s marketing pitch and I don&#8217;t find anything overtly offensive or controversial with regard to WordPress.</p>
<blockquote><p>Of course Graffiti is built on .NET and truth be told any good developer can make either PHP or ASP.NET code perform. However, we think there are more long-term advantages in Microsoft&#8217;s platform and better tools. So for developers familiar with ASP.NET its full power and capability are available to you.</p></blockquote>
<p>Those are the words from their site. They don&#8217;t seem to bashing PHP directly or too much.</p>
<p>I particularly like the comment below by <a href="http://ianfnelson.com/">Ian</a></p>
<blockquote><p> Hello folks, greetings from &#8220;the dark side&#8221;!</p>
<p>I have never tried WordPress but at first glance it appears to be fond of MySQL and PHP, both of which make my stomach turn.</p>
<p>Are you suggesting that I should migrate across to an unfamiliar platform in deference to using a solution which runs on my favoured &#8220;stack&#8221; of Windows, SQL Server, and ASP.NET? Or are you just taking issue with their advertising message? Iâ€™m not being facetious or rhetorical, Iâ€™m genuinely curious.<br />
Personally speaking, I have found this early beta release of Graffiti to be an excellent CMS platform and more than adequate for my requirements of a personal blogging platform on the MS stack.</p>
<p>Best wishes,<br />
Ian</p></blockquote>
<p>So would anyone like to point out to me how PHP is technically better than ASP.NET. Both Technologies have there advantages and disadvantages. The only reason why ASP.NET seems to be gets bashed is because it made by Microsoft.</p>
<blockquote><p>Itâ€™s not about what platform you prefer to use (Iâ€™d rather slit my wrists than use IIS, ASP.NET, or SQL Server, for example), but about your approach to how to sell your product. The majority or websites on the â€˜net today run on Linux boxes, usually running PHP and MySQL (or some other database solution and scripting methodology running on a *nix box of some sort), so to dismiss that vast amount of installed user bases and developers so simply and simply to state that one solution is better than another is to miss the whole point entirely.</p></blockquote>
<p><a href="http://ottodestruct.com/blog/">Otto </a>needs a <a href="http://news.netcraft.com/archives/2007/12/29/december_2007_web_server_survey.html">reality check</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/overallc.gif" height="300" width="550" /></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/overalld.gif" height="300" width="550" /></p>
<p>Its not a religion people its just technologies. <a href="http://photomatt.net/2008/01/03/graffitti-disses-wordpress/">Shame on Matt for linking to a complete non-issue</a>. WordPress is good at what it does but it can&#8217;t be everthing, there will always be people marketing themselves as better than WordPress.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/wordpress-launches-free-hosted-stats/' rel='bookmark' title='Permanent Link: Wordpress Launches Free Hosted Stats'>Wordpress Launches Free Hosted Stats</a></li>
<li><a href='http://www.clazh.com/wicked-cool-documentation-manual-inside-habari/' rel='bookmark' title='Permanent Link: Wicked Cool Documentation Manual Inside Habari'>Wicked Cool Documentation Manual Inside Habari</a></li>
<li><a href='http://www.clazh.com/wordpress-news-221-rc-23-new-feature-and-wpzipper-update/' rel='bookmark' title='Permanent Link: Wordpress News 2.2.1 RC, 2.3 New Feature And WPzipper Update'>Wordpress News 2.2.1 RC, 2.3 New Feature And WPzipper Update</a></li>
<li><a href='http://www.clazh.com/wordpress-2008-blog-20-cool-future-features/' rel='bookmark' title='Permanent Link: WordPress 2008 = Blog 2.0 Cool Future Features'>WordPress 2008 = Blog 2.0 Cool Future Features</a></li>
<li><a href='http://www.clazh.com/how-to-write-a-wordpress-plugin-series/' rel='bookmark' title='Permanent Link: How to Write a WordPress Plugin Series'>How to Write a WordPress Plugin Series</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2008. |
<a href="http://www.clazh.com/yes-wordpress-is-blog-not-a-cms-get-over-it/">Permalink</a> |
<a href="http://www.clazh.com/yes-wordpress-is-blog-not-a-cms-get-over-it/#comments">21 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/yes-wordpress-is-blog-not-a-cms-get-over-it/&title=Yes WordPress Is Blog Not A CMS Get Over It">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/blogging/" title="View all posts in Blogging" rel="category tag">Blogging</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/open-source/" rel="tag">Open Source</a>, <a href="http://www.clazh.com/tag/programming/" rel="tag">Programming</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a>, <a href="http://www.clazh.com/tag/wordpress/" rel="tag">Wordpress</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/yes-wordpress-is-blog-not-a-cms-get-over-it/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Upgraded To WordPress 2.3</title>
		<link>http://www.clazh.com/upgraded-to-wordpress-23/</link>
		<comments>http://www.clazh.com/upgraded-to-wordpress-23/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 10:46:40 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Web-Development]]></category>

		<guid isPermaLink="false">http://www.clazh.com/upgraded-to-wordpress-23/</guid>
		<description><![CDATA[I have upgraded my blog to WordPress 2.3 I was reluctant to upgrade since I  was using a lot of features and functions from the Ultimate Tag Warrior Plugin  in my theme. Today I sat and cleaned up my theme code and tested it out. If you  come across any bugs let [...]]]></description>
			<content:encoded><![CDATA[<p>I have upgraded my blog to WordPress 2.3 I was reluctant to upgrade since I  was using a lot of features and functions from the Ultimate Tag Warrior Plugin  in my theme. Today I sat and cleaned up my theme code and tested it out. If you  come across any bugs let me know. Do you any of you have any suggestion to which  Plugin I should use for tag management? Two features in WordPress 2.3 that I  really love are the Automatic Plugin Upgrade Advisor and Canonical URLS. I&#8217;ll be  polishing and upgrading the site and my free themes in the coming days.</p>
<p>BDV-17067-BDV</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/wordpress-themes-and-plugins-competitions/' rel='bookmark' title='Permanent Link: Wordpress Themes and Plugins Competitions'>Wordpress Themes and Plugins Competitions</a></li>
<li><a href='http://www.clazh.com/who-sees-ads-an-interesting-wordpress-plugin/' rel='bookmark' title='Permanent Link: Who Sees Ads An Interesting Wordpress Plugin'>Who Sees Ads An Interesting Wordpress Plugin</a></li>
<li><a href='http://www.clazh.com/best-customizable-multiple-color-styles-wordpress-themes/' rel='bookmark' title='Permanent Link: Best Customizable Multiple Color Styles Wordpress Themes'>Best Customizable Multiple Color Styles Wordpress Themes</a></li>
<li><a href='http://www.clazh.com/free-magazine-style-wordpress-themes-and-more/' rel='bookmark' title='Permanent Link: Free Magazine Style WordPress Themes And More'>Free Magazine Style WordPress Themes And More</a></li>
<li><a href='http://www.clazh.com/top-best-beautiful-wordpress-themes-templates/' rel='bookmark' title='Permanent Link: Part3 Top Best Beautiful Wordpress Themes and Templates'>Part3 Top Best Beautiful Wordpress Themes and Templates</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/upgraded-to-wordpress-23/">Permalink</a> |
<a href="http://www.clazh.com/upgraded-to-wordpress-23/#comments">10 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/upgraded-to-wordpress-23/&title=Upgraded To WordPress 2.3">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/download/" rel="tag">Download</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/upgraded-to-wordpress-23/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>My Web Design Got Ripped</title>
		<link>http://www.clazh.com/my-web-design-got-ripped/</link>
		<comments>http://www.clazh.com/my-web-design-got-ripped/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 16:32:57 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Web-Development]]></category>

		<guid isPermaLink="false">http://www.clazh.com/my-web-design-got-ripped/</guid>
		<description><![CDATA[I got a mail from someone named Charles that my Blog Design had been ripped. I wrote it off as hoax, but for a second I was scared that my site might have got hacked or hijacked like David Airey site recently. (Please help him by supporting him in his fight against the domain squatter).
hey [...]]]></description>
			<content:encoded><![CDATA[<p>I got a mail from someone named Charles that my Blog Design had been ripped. I wrote it off as hoax, but for a second I was scared that my site might have got hacked or hijacked like <a href="http://www.davidairey.co.uk/">David Airey</a> site recently. (Please help him by supporting him in his fight against the domain squatter).</p>
<blockquote><p>hey just a heads up, your site got ripped. Its out in the world wide web now.</p></blockquote>
<p>In the evening while catching up with my RSS feeds I noticed a bunch of strange links <a href="http://technorati.com/blogs/clazh.com?reactions">showing up in Technorati</a> and I found a bunch of sites using my theme. Unfortunately for the ripper I am not upset, why you ask? I was going to release the theme this Christmas as a free download but was waiting for the WordPress.com guys to launch the Wordpress marketplace. Since my theme had been approved to be listed on it when it opens up, I was asked not to make it available for download till they launched.  Its been almost a month and the Wordpress.com guys haven&#8217;t got back to me yet. The theme would have made a really good Christmas and New year gift since a huge number of people had requested and begged me to release it. If you guys can be a little more patient I&#8217;ll make it available right after the market place launches.</p>
<blockquote><p>Currently since I haven&#8217;t released the theme it is copyrighted and using it without my permission is illegal. I will be releasing it under a GPL licence after which you are free to do whatever you wish with the theme.</p></blockquote>
<p>As a side note can you help my friend <a href="http://www.tecfre.com/how-do-you-feel-when-your-comment-is-caught-by-a-spam-protector-plugin/">Kanak his comments seem to be going into the spam queue any solutions?</a></p>
<p>A belated Merry Christmas and a Happy New Year.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/free-web-design-icons-download-web-development-projects/' rel='bookmark' title='Permanent Link: 10 Free Web Design Icons For Download, Used On This Web Site'>10 Free Web Design Icons For Download, Used On This Web Site</a></li>
<li><a href='http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/' rel='bookmark' title='Permanent Link: WordPress To Launch Theme Marketplace, All Themes To be GPL'>WordPress To Launch Theme Marketplace, All Themes To be GPL</a></li>
<li><a href='http://www.clazh.com/clean-a-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Clean A Free Wordpress Theme'>Clean A Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/grid-focus-a-free-professional-wordpress-theme/' rel='bookmark' title='Permanent Link: Grid Focus A Free Professional Wordpress Theme'>Grid Focus A Free Professional Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/top-best-beautiful-wordpress-themes-templates/' rel='bookmark' title='Permanent Link: Part3 Top Best Beautiful Wordpress Themes and Templates'>Part3 Top Best Beautiful Wordpress Themes and Templates</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/my-web-design-got-ripped/">Permalink</a> |
<a href="http://www.clazh.com/my-web-design-got-ripped/#comments">42 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/my-web-design-got-ripped/&title=My Web Design Got Ripped">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/design/" title="View all posts in Design" rel="category tag">Design</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/my-web-design-got-ripped/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>WordPress To Launch Theme Marketplace, All Themes To be GPL</title>
		<link>http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/</link>
		<comments>http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 04:29:38 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Web-Development]]></category>

		<guid isPermaLink="false">http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/</guid>
		<description><![CDATA[About 4 weeks back I was contacted by Toni Schneider CEO of Automattic.  Automattic was thinking of launching a WordPress Theme marketplace for  WordPress.com. At that time they wanted to keep to it under wraps. Now Matt himself has  confirmed this.
I thought it was an excellent idea especially to give exposure to [...]]]></description>
			<content:encoded><![CDATA[<p>About 4 weeks back I was contacted by <a href="http://toni.schneidersf.com/">Toni Schneider</a> CEO of Automattic.  Automattic was thinking of launching a WordPress Theme marketplace for  WordPress.com. At that time they wanted to keep to it under wraps. Now <a href="http://photomatt.net/2007/11/01/wpcom-marketplace-idea/">Matt himself has  confirmed this</a>.</p>
<p>I thought it was an excellent idea especially to give exposure to WordPress  theme designers. But there was one confusion i.e. wanted all the themes to be  GPL. Below is my response to this. I didn&#8217;t get any response to my feedback. Not  sure if it has something to with the fact that I objected to a GPL for Premium  themes.</p>
<p><em>We&#8217;re thinking of making it a requirement that the themes be original  (never published before), GPL licensed (to help other designers and keep the  copyright issues simple) and not have any credit links (since they are paid).  Any thoughts on that? </em></p>
<p><em>        How can a theme be premium and GPL at the same time? Once it is  GPL everyone has access to it for free. If its free why buy it? I wouldn&#8217;t sell  a Premium theme with a GPL licence. Also if I am correct you mentioned that the  theme is CSS based i.e. using the SANDBOX Theme. Which means It is very easy to  grab the CSS source code hence It just doesn&#8217;t make sense to GPL the  theme.<br />
Credit links need to be shown irrespective of whether the  theme is free or premium. Not only is it the right thing to do this is the way  most Freelance designers get more clients and spread the word about themselves,  it also acts as a copyright.</em></p>
<p>A comment from <a href="http://www.readwriteweb.com/archives/wordpress_launching_theme_mark.php#c022358">malan</a>  and a post from Matt blog got me rethinking.</p>
<p><em>blah! this will KILL any and all free WP themes. great job  WordPress.</em></p>
<p>From Matt&#8217;s blog.</p>
<p><em>Beyond the obvious guidelines of browser compatibility and general  not-sucking, weâ€™ll require submissions be original, link-free, not published  before, and GPL-licensed. (That also means that all themes in the marketplace  will be available FREE to WordPress.org users. That may force some to switch  from .com to .org, but thatâ€™s fine.)</em></p>
<p>I was in the process of releasing my current Theme &#8220;Azure Sky&#8221; as a free theme. But I had seconds thought of releasing it as a paid theme since I had put so much time and effort into it. I think if I release the theme on WordPress.com it solves both my problems i.e. I get paid for it and it also get to release it for free for WordPress.org i.e. people hosting WordPress themselves.</p>
<p>I am think I am willing to experiment and see how this marketplace works out.  As long as the effort that I put into a theme is compensated for.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/cool-wordpress-themes-mods-of-the-dark-theme/' rel='bookmark' title='Permanent Link: Cool Wordpress Themes Mods Of The Dark Theme'>Cool Wordpress Themes Mods Of The Dark Theme</a></li>
<li><a href='http://www.clazh.com/best-customizable-multiple-color-styles-wordpress-themes/' rel='bookmark' title='Permanent Link: Best Customizable Multiple Color Styles Wordpress Themes'>Best Customizable Multiple Color Styles Wordpress Themes</a></li>
<li><a href='http://www.clazh.com/notable-free-premium-wordpress-themes/' rel='bookmark' title='Permanent Link: Notable Free Premium WordPress Themes'>Notable Free Premium WordPress Themes</a></li>
<li><a href='http://www.clazh.com/top-best-free-wordpress-themes-templates/' rel='bookmark' title='Permanent Link: Part2 Top Ten Best Free Wordpress Themes and Templates'>Part2 Top Ten Best Free Wordpress Themes and Templates</a></li>
<li><a href='http://www.clazh.com/wordpress-themes-and-plugins-competitions/' rel='bookmark' title='Permanent Link: Wordpress Themes and Plugins Competitions'>Wordpress Themes and Plugins Competitions</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/">Permalink</a> |
<a href="http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/#comments">10 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/&title=WordPress To Launch Theme Marketplace, All Themes To be GPL">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/blogging/" title="View all posts in Blogging" rel="category tag">Blogging</a>,  <a href="http://www.clazh.com/category/design/" title="View all posts in Design" rel="category tag">Design</a>,  <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Top WordPress Blogs And Upcoming Indian Tech Blogs</title>
		<link>http://www.clazh.com/top-wordpress-blogs-and-upcoming-indian-tech-blogs/</link>
		<comments>http://www.clazh.com/top-wordpress-blogs-and-upcoming-indian-tech-blogs/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 16:57:02 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Marketplace]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.clazh.com/top-wordpress-blogs-and-upcoming-indian-tech-blogs/</guid>
		<description><![CDATA[Artur Kim has complied a list of Top Blogs that blog about WordPress based on their Page Rank, Alexa and Technorati Rankings. My blog is at positioned at number 10. I want to thank my readers who have made this possible. Mani karthik has also compiled a list of upcoming Tech Bloggers in India. Here [...]]]></description>
			<content:encoded><![CDATA[<p>Artur Kim has complied a list of <a href="http://www.wpthemesgallery.com/top40">Top Blogs that blog about WordPress</a> based on their Page Rank, Alexa and Technorati Rankings. My blog is at positioned at number 10. I want to thank my readers who have made this possible. Mani karthik has also compiled a list of <a href="http://www.dailyseoblog.com/2007/10/top-upcoming-tech-bloggers-in-india/">upcoming Tech Bloggers in India</a>. Here my blog was ranked at Number 1.</p>
<p>This blog has come a long way. While I have slowed down a bit on the posting frequency I will continue to post quality content. If any of you would like to do a guest post here on my blog do let me know what you are going to blog about and use the contact form to contact me.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/top-ten-popular-and-useful-wordpress-plugins/' rel='bookmark' title='Permanent Link: Top Ten Popular and Useful Wordpress Plugins'>Top Ten Popular and Useful Wordpress Plugins</a></li>
<li><a href='http://www.clazh.com/guest-bloggers-required-sandbox-wordpress-theme-suggestions/' rel='bookmark' title='Permanent Link: Guest Bloggers Required, SandBox Wordpress Theme Suggestions'>Guest Bloggers Required, SandBox Wordpress Theme Suggestions</a></li>
<li><a href='http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/' rel='bookmark' title='Permanent Link: WordPress To Launch Theme Marketplace, All Themes To be GPL'>WordPress To Launch Theme Marketplace, All Themes To be GPL</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/top-wordpress-blogs-and-upcoming-indian-tech-blogs/">Permalink</a> |
<a href="http://www.clazh.com/top-wordpress-blogs-and-upcoming-indian-tech-blogs/#comments">6 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/top-wordpress-blogs-and-upcoming-indian-tech-blogs/&title=Top WordPress Blogs And Upcoming Indian Tech Blogs">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/marketplace/" rel="tag">Marketplace</a>, <a href="http://www.clazh.com/tag/open-source/" rel="tag">Open Source</a>, <a href="http://www.clazh.com/tag/wordpress/" rel="tag">Wordpress</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/top-wordpress-blogs-and-upcoming-indian-tech-blogs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
