<?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>WordPress Rocks!</title>
	<atom:link href="http://wprocks.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wprocks.com</link>
	<description>Commentary by Sadish on WordPress and his Themes</description>
	<lastBuildDate>Wed, 28 Dec 2011 04:02:17 +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>My Themes and WordPress 3.3</title>
		<link>http://wprocks.com/wordpress-news/sadishs-themes-and-wordpress-3-3/</link>
		<comments>http://wprocks.com/wordpress-news/sadishs-themes-and-wordpress-3-3/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 04:00:36 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[WordPress 3.3]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=1104</guid>
		<description><![CDATA[WordPress 3.3 <a href="http://wordpress.org/news/2011/12/sonny/" title="WordPress 3.3" target="_blank">is released</a> on December 12th 2011.

All my WordPress Themes will work seamlessly on WordPress 3.3. There is no need for any kind of theme updates. The themes will just work as it is.

In case you are having any difficulty, please feel free to let us know at our support forms. Enjoy the new features of WordPress 3.3.]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.3 <a href="http://wordpress.org/news/2011/12/sonny/" title="WordPress 3.3" target="_blank">is released</a> on December 12th 2011.</p>
<p>All <a href="http://wprocks.com/all/free-wordpress-themes/" title="Free WordPress Themes by Sadish">my WordPress Themes</a> will work seamlessly on WordPress 3.3. There is no need for any kind of theme updates. <strong>The themes will just work as they are</strong>.</p>
<p>In case you are having any difficulty, please feel free to let us know at our <a href="http://wprocks.com/forums/" title="Theme Support Forums by Sadish">support forms</a>.<br />
Enjoy the new features of WordPress 3.3.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/wordpress-news/sadishs-themes-and-wordpress-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are post-formats? how do we put it to use?</title>
		<link>http://wprocks.com/wordpress-tips/what-are-post-formats-how-do-we-put-it-to-use/</link>
		<comments>http://wprocks.com/wordpress-tips/what-are-post-formats-how-do-we-put-it-to-use/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 04:11:46 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=1049</guid>
		<description><![CDATA[The WordPress team brought a new feature in WordPress 3.1 version, called the post-formats.
What is it? How is it different from a post category or a post tag? why do we need another characteristic to be associated with a post?
Lets try to learn about them in this post.]]></description>
			<content:encoded><![CDATA[<p>The WordPress team brought a new feature in WordPress 3.1 version, called the post-formats.<br />
What is it? How is it different from a post category or a post tag? why do we need another characteristic to be associated with a post?<br />
Lets try to learn about them in this post.</p>
<h3>What is it?</h3>
<p>A Post Format is a piece of information you specify about a post, which can be used by the theme to decide how to display it.<br />
If the post&#8217;s format is set to &#8220;status&#8221;,then the theme could decide to just show the post&#8217;s content and the date.<br />
In my theme <a href="http://wprocks.com/coffeetime/" title="CoffeeTime Theme">CoffeeTime</a>, I have added support for all of the post-formats that are supported by WordPress.<br />
<span id="more-1049"></span></p>
<h3>What are the type of post-formats that WordPress support?</h3>
<p>WordPress supports the following post-formats.</p>
<ul>
<li>aside</li>
<li>gallery</li>
<li>link</li>
<li>image</li>
<li>quote</li>
<li>status</li>
<li>video</li>
<li>audio</li>
<li>chat</li>
</ul>
<p>These post-formats will be shown on the WordPress&#8217;s Add Post / Edit Post section, if the theme that you are using supports them.</p>
<h3>Adding support for Post Formats in a WordPress Theme</h3>
<p>Themes should include the following code in their functions.php file if they support Post Formats.<br />
<code><br />
add_theme_support( 'post-formats', array( 'aside','image','quote','status','video','audio','chat' ) );<br />
</code><br />
If you are using my theme &#8216;CoffeeTime&#8217; then you would see the Write Post area to have the following options.<br />
<a href="http://wprocks.com/wp-content/uploads/2011/09/post-format-icons-supported-theme-coffeetime2.jpg" class="thickbox" title="Post Formats"><img src="http://wprocks.com/wp-content/uploads/2011/09/post-format-icons-supported-theme-coffeetime2-300x250.jpg" alt="post-formats-supported-theme-coffeetime" title="post-format-icons-supported-theme-coffeetime2" width="300" height="250" class="alignnone size-medium wp-image-1052" /></a></p>
<h3>Styling Posts differently according to the post format selected</h3>
<p>Once we added the support for post formats, the user can select a post-format for a blog post.<br />
Then the theme has to style the posts differently.<br />
For that, we make sure we add post_class() method to the article tag within the loop.<br />
Something like<br />
<code><br />
	&lt;article id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class(); ?&gt;&gt;<br />
</code><br />
Then we will get something like this for each article.<br />
<code><br />
&lt;article id="post-20" class="post-20 post type-post status-publish <strong><em>format-standard</em></strong> hentry category-uncategorized"&gt;<br />
</code><br />
Just like this, we would get format-aside, format-image or format-gallery, depending on the post-format assigned to the post.<br />
Now when we want to style things differently depending upon the post-format, we can add style definitions for these class names in our style.css<br />
In my CoffeeTime theme, I added the code that looks like<br />
<code><br />
.format-aside .titlearea { background:url(images/pf/aside.png) no-repeat left top;}<br />
.format-audio .titlearea { background:url(images/pf/audio.png) no-repeat left top;}<br />
.format-chat .titlearea { background:url(images/pf/chat.png) no-repeat left top;}<br />
.format-standard .titlearea { background:url(images/pf/standard.png) no-repeat left top;}<br />
.format-gallery .titlearea { background:url(images/pf/gallery.png) no-repeat left top;}<br />
.format-image .titlearea { background:url(images/pf/image.png) no-repeat left top;}<br />
.format-link .titlearea { background:url(images/pf/link.png) no-repeat left top;}<br />
</code><br />
This will make sure we display a specific image in the title area of each post depending on the post-format specified for the post. It will look like the following.<br />
<a href="http://wprocks.com/wp-content/uploads/2011/09/post-format-icons-supported-theme-coffeetime.jpg" class="thickbox" title="Post Formats in Theme"><img src="http://wprocks.com/wp-content/uploads/2011/09/post-format-icons-supported-theme-coffeetime-300x300.jpg" alt="Post formats in Theme" title="post-format-icons-supported-theme-coffeetime" /></a></p>
<h3>Related Links</h3>
<ul>
<li><a href="http://codex.wordpress.org/Post_Formats" title="Codex Link for Post Formats" target="_blank">Codex Link</a></li>
<li><a href="http://www.studiopress.com/graphics/post-format-icons.htm" title="Free Icons by StudioPress" target="_blank">Free Icons by StudioPress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/wordpress-tips/what-are-post-formats-how-do-we-put-it-to-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CoffeeTime &#8211; my first HTML5 WordPress Theme</title>
		<link>http://wprocks.com/free-wordpress-themes/coffeetime-my-first-html5-wordpress-theme/</link>
		<comments>http://wprocks.com/free-wordpress-themes/coffeetime-my-first-html5-wordpress-theme/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 04:10:01 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=1096</guid>
		<description><![CDATA[This is the first ever HTML5 WordPress Theme that I created.
It also uses CSS3 for some of the new CSS features like Opacity, Shadow etc.
It has a nice and big header image and it supports Post Formats feature when used with WordPress 3.1 and above.
<a href="http://wprocks.com/coffeetime/" title="CoffeeTime Theme"><img src="http://wprocks.com/wp-content/uploads/2011/09/coffeetime-small-300x252.png" alt="CoffeeTime Theme" title="coffeetime-small" /><br/>CoffeeTime WordPress Theme</a>.
It supports all the usual features like Tags, Gravatar, Threaded Comments etc.
If you like the theme, please share it with people you know.]]></description>
			<content:encoded><![CDATA[<p>This is the first ever HTML5 WordPress Theme that I created.<br />
It also uses CSS3 for some of the new CSS features like Opacity, Shadow etc.<br />
It has a nice and big header image and it supports Post Formats feature when used with WordPress 3.1 and above.<br />
<a href="http://wprocks.com/coffeetime/" title="CoffeeTime Theme"><img src="http://wprocks.com/wp-content/uploads/2011/09/coffeetime-small-300x252.png" alt="CoffeeTime Theme" title="coffeetime-small" /><br/>CoffeeTime WordPress Theme</a>.<br />
It supports all the usual features like Tags, Gravatar, Threaded Comments etc.<br />
If you like the theme, please share it with people you know.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/free-wordpress-themes/coffeetime-my-first-html5-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fabulo- A fabulous Theme for WordPress</title>
		<link>http://wprocks.com/free-wordpress-themes/fabulo-a-fabulous-theme-for-wordpress/</link>
		<comments>http://wprocks.com/free-wordpress-themes/fabulo-a-fabulous-theme-for-wordpress/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 22:56:25 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=1019</guid>
		<description><![CDATA[<a href="http://wprocks.com/fabulo/" title="Fabulo Theme"><img src="http://wprocks.com/wp-content/uploads/2011/08/fabulo-300x259.png" alt="" title="fabulo" width="300" height="259" /><br/>Fabulo WordPress Theme</a>.]]></description>
			<content:encoded><![CDATA[<p>It has been so long since I released a free WordPress Theme to the community. I got some time on my hand during the last weekend and started building this theme.<br />
I was searching for a name to this theme, and finally I decided to use &#8220;Fabulo&#8221; &#8211; after making sure this name is not used by anyone else for their WordPress themes.<br />
<a href="http://wprocks.com/fabulo/" title="Fabulo Theme"><img src="http://wprocks.com/wp-content/uploads/2011/08/fabulo-300x259.png" alt="" title="fabulo" width="300" height="259" /><br/>Fabulo WordPress Theme</a>.<br />
This is a two-column WordPress Theme with a large header image.<br />
It supports all the features like Tags, Gravatar, Threaded Comments etc.<br />
If you like the theme, please share it with people you know.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/free-wordpress-themes/fabulo-a-fabulous-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GreenLife &#8211; Another Free Theme</title>
		<link>http://wprocks.com/free-wordpress-themes/greenlife-another-free-theme/</link>
		<comments>http://wprocks.com/free-wordpress-themes/greenlife-another-free-theme/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 05:16:20 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=999</guid>
		<description><![CDATA[<a href="http://wprocks.com/greenlife/"><img src="/wp-content/uploads/2010/12/greenlife-wordpress-theme-150x150.jpg" alt="GreenLife WordPress Theme" title="GreenLife WordPress Theme" /><br/>GreenLife WordPress Theme</a>.]]></description>
			<content:encoded><![CDATA[<p>Here I am again, announcing the release of my next free WordPress Theme.<br />
Green has always been one of my very favorite colors and so I have named it as &#8220;GreenLife&#8221;.<br />
<a href="http://wprocks.com/greenlife/"><img src="/wp-content/uploads/2010/12/greenlife-wordpress-theme-286x300.jpg" alt="GreenLife WordPress Theme" title="GreenLife WordPress Theme" /><br/>GreenLife WordPress Theme</a>.<br />
This is a two-column WordPress Theme, with Custom Image Header feature.<br />
It supports all the features like Tags, Gravatar, Threaded Comments etc.<br />
If you like the theme, please share it with people you know.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/free-wordpress-themes/greenlife-another-free-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ZigZag3 &#8211; A Free Premium Theme</title>
		<link>http://wprocks.com/free-wordpress-themes/zigzag3-a-free-premium-theme/</link>
		<comments>http://wprocks.com/free-wordpress-themes/zigzag3-a-free-premium-theme/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 22:58:59 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=987</guid>
		<description><![CDATA[<a href="http://wprocks.com/zigzag3/"><img src="/wp-content/uploads/2010/10/zigzag3-wordpress-theme-298x300.jpg" alt="ZigZag3 WordPress Theme" title="ZigZag3 WordPress Theme" /><br/>ZigZag3 WordPress Theme</a>.]]></description>
			<content:encoded><![CDATA[<p>&#8220;ZigZag3&#8243;- is one of the Premium themes that I have created and have been selling for $24 through my other website(wpthemeshop.com).</p>
<p>Recently, I came to an agreement with the owner of <a href="http://www.top10webhosting.com" title="Best web hosting" target="_blank">Best web hosting</a> and we decided to make this theme available as a free theme for everyone.<br />
So, there you have it, for absolutely free!</p>
<p>You can now download it for free and use it on any of your WordPress powered websites as long as you adhere to our <a href="http://wprocks.com/license-info/" title="Sadish's Themes License">licensing terms</a>. Enjoy!<br />
<a href="http://wprocks.com/zigzag3/"><img src="/wp-content/uploads/2010/10/zigzag3-wordpress-theme-298x300.jpg" alt="ZigZag3 WordPress Theme" title="ZigZag3 WordPress Theme" /><br/>ZigZag3 WordPress Theme</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/free-wordpress-themes/zigzag3-a-free-premium-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GreenValley &#8211; Free Theme</title>
		<link>http://wprocks.com/free-wordpress-themes/greenvalley-free-theme/</link>
		<comments>http://wprocks.com/free-wordpress-themes/greenvalley-free-theme/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 02:18:21 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=967</guid>
		<description><![CDATA[Here I am again, announcing the release of my next free WordPress Theme.
<a href="http://wprocks.com/greenvalley/"><img src="/wp-content/uploads/2010/10/greenvalley-wordpress-theme-300x286.jpg" alt="GreenValley WordPress Theme" title="GreenValley WordPress Theme" /><br/>GreenValley WordPress Theme</a>.]]></description>
			<content:encoded><![CDATA[<p>Here I am again, announcing the release of my next free WordPress Theme.<br />
<a href="http://wprocks.com/greenvalley/"><img src="/wp-content/uploads/2010/10/greenvalley-wordpress-theme-300x286.jpg" alt="GreenValley WordPress Theme" title="GreenValley WordPress Theme" /><br/>GreenValley WordPress Theme</a>.<br />
This is a three-column WordPress Theme, with Custom Image Header feature. It has page templates for Archives, Contact and Link pages as well. It supports all the features like Tags, Gravatar, Threaded Comments etc.<br />
If you like the theme, please share it with people you know.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/free-wordpress-themes/greenvalley-free-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;Pal Nila&#8221; &#8211; is a Free WordPress Theme now</title>
		<link>http://wprocks.com/free-wordpress-themes/pal-nila-is-a-free-wordpress-theme-now/</link>
		<comments>http://wprocks.com/free-wordpress-themes/pal-nila-is-a-free-wordpress-theme-now/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 01:25:50 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=946</guid>
		<description><![CDATA[PalNila - is one of the Premium themes that I have created and have been selling for $24 through my other website(wpthemeshop.com). You can now download it for free and use it on any of your WordPress powered websites as long as you adhere to our <a href="/license-info/" title="Sadish's Themes License">licensing terms</a>. Enjoy!
<a href="http://wprocks.com/palnila/"><img src="/wp-content/uploads/2010/08/palnila-wordpress-theme-150x150.jpg" alt="PalNila WordPress Theme" title="PalNila WordPress Theme" /><br/>PalNila WordPress Theme</a>.]]></description>
			<content:encoded><![CDATA[<p>&#8220;PalNila&#8221;- is one of the Premium themes that I have created and have been selling for $24 through my other website(wpthemeshop.com). It is a very popular theme among my theme users.</p>
<p>Recently, I came to an agreement with the owner of <a href="http://www.top10webhosting.com" title="Best web hosting" target="_blank">Best web hosting</a> and we decided to make this theme available as a free theme for everyone.<br />
So, there you have it, for absolutely free!</p>
<p>You can now download it for free and use it on any of your WordPress powered websites as long as you adhere to our <a href="http://wprocks.com/license-info/" title="Sadish's Themes License">licensing terms</a>. Enjoy!<br />
<a href="http://wprocks.com/palnila/"><img src="/wp-content/uploads/2010/09/palnila-medium.jpg" alt="PalNila WordPress Theme" title="PalNila WordPress Theme" /><br/>PalNila WordPress Theme</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/free-wordpress-themes/pal-nila-is-a-free-wordpress-theme-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Free WordPress Theme: GoldenGate</title>
		<link>http://wprocks.com/free-wordpress-themes/new-free-wordpress-theme-goldengate/</link>
		<comments>http://wprocks.com/free-wordpress-themes/new-free-wordpress-theme-goldengate/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 04:04:14 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=918</guid>
		<description><![CDATA[I am really happy to release yet another free WordPress Theme for all of you.
<a href="http://wpthemecity.com/themes/goldengate/"><img src="/wp-content/uploads/2010/08/goldengate-wordpress-theme-150x150.jpg" alt="GoldenGate WordPress Theme" title="GoldenGate WordPress Theme" /><br/>GoldenGate WordPress Theme</a>.]]></description>
			<content:encoded><![CDATA[<p>I am really happy to release yet another free WordPress Theme for all of you.<br />
<a href="http://wpthemecity.com/themes/goldengate/"><img src="/wp-content/uploads/2010/08/goldengate-wordpress-theme.jpg" alt="GoldenGate WordPress Theme" title="GoldenGate WordPress Theme" /><br/>GoldenGate WordPress Theme</a>.<br />
Its really cool WordPress Theme with all of the features you would expect from me.<br />
Please feel free to share it with your friends and family.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/free-wordpress-themes/new-free-wordpress-theme-goldengate/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>There are no hidden or encrypted links in my themes</title>
		<link>http://wprocks.com/site-news/there-are-no-hidden-or-encrypted-links-in-my-themes/</link>
		<comments>http://wprocks.com/site-news/there-are-no-hidden-or-encrypted-links-in-my-themes/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 20:07:09 +0000</pubDate>
		<dc:creator>Sadish</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://wprocks.com/?p=899</guid>
		<description><![CDATA[There are no hidden / encrypted links anywhere on my themes. I have never released such a theme. You can safely ignore the message shown by the TAC plugin.]]></description>
			<content:encoded><![CDATA[<p>There are no hidden / encrypted links anywhere on my themes. I have never released such a theme.</p>
<p>Recently one of my theme users [his name is <a href="http://www.coconis.com/" title="Yannis" target="_blank" rel="nofollow">Yannis</a>], contacted me through my contact page.He said,</p>
<blockquote><p>
Hi, I came across a plugin called TAC (<a href="http://builtbackwards.com/projects/tac/" title="TAC" rel="nofollow" target="_blank">Theme Authenticity Checker</a>) that&#8217;s supposed to reveal encrypted codes in wp themes.<br />
They also say that we should stop using themes with encrypted codes.<br />
Surprisingly, TAC found encrypted codes in SeaShore and in MistyLook (I was using previously).<br />
Any comments please.<br />
Thanks
</p></blockquote>
<p>I was quite puzzled about that and then tried the plugin on my own website.<br />
It showed an error message like this.<br />
<img src="/wp-content/uploads/2010/08/no-encrypted-links-in-sadishs-themes.png" alt="" title="no-encrypted-links-in-sadishs-themes" width="367" height="59" /><br />
This error shows up on a line in my theme&#8217;s contact page template [contact.php].<br />
This template helps in creating a contact page so that the visitors can send personal messages to the site owners.<br />
When these messages are submitted, the contact.php file encrypts the message and then sends it as an email to the site owner.<br />
This is <strong>not an issue</strong> at all. So if you come across this message from that plugin, it is OK to ignore the warning.<br />
I thought I should let you all know about this.</p>
]]></content:encoded>
			<wfw:commentRss>http://wprocks.com/site-news/there-are-no-hidden-or-encrypted-links-in-my-themes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

