<?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>WordPressCreme.com &#187; Snippet</title>
	<atom:link href="http://www.wordpresscreme.com/tag/snippet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wordpresscreme.com</link>
	<description>WordPress Resources, Turorials, Articles, Tips, Themes and Blog Reviews</description>
	<lastBuildDate>Sat, 09 Jul 2011 16:29:43 +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>5 New and totally killer WordPress hacks</title>
		<link>http://www.wordpresscreme.com/5-new-and-totally-killer-wordpress-hacks/</link>
		<comments>http://www.wordpresscreme.com/5-new-and-totally-killer-wordpress-hacks/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 12:42:51 +0000</pubDate>
		<dc:creator>Santiago</dc:creator>
				<category><![CDATA[WordPressCreme News]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[Snippet]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.wordpresscreme.com/?p=254</guid>
		<description><![CDATA[Based on, Smashing Magazine article, with this 5 new and totally killer WordPress hacks to make your blog stand out from the crowd. In each entry, you’ll find an explanation of the code as well as the kinds of problems that the hack solves. 1. Create TinyURLs On The Fly The problem. Because Twitter has [...]]]></description>
		<wfw:commentRss>http://www.wordpresscreme.com/5-new-and-totally-killer-wordpress-hacks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Comment Form Style with JQuery in WordPress</title>
		<link>http://www.wordpresscreme.com/comment-form-style-with-jquery-in-wordpress/</link>
		<comments>http://www.wordpresscreme.com/comment-form-style-with-jquery-in-wordpress/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 11:00:12 +0000</pubDate>
		<dc:creator>Santiago</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Form]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Snippet]]></category>
		<category><![CDATA[Style]]></category>

		<guid isPermaLink="false">http://www.wordpresscreme.com/?p=246</guid>
		<description><![CDATA[JQuery is very popular now in WordPress used for menus, lists, form validation and it is used for comment forms style modification too.
In this post I want to show you How you can change the style of your comment forms in WordPress making more great looking using JQuery.
When comment form is selected JQeury changes the style of the forms using some of the CSS classes,changing the text, background and border form color.]]></description>
		<wfw:commentRss>http://www.wordpresscreme.com/comment-form-style-with-jquery-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a simple paypal donation link</title>
		<link>http://www.wordpresscreme.com/how-to-add-a-simple-paypal-donation-link/</link>
		<comments>http://www.wordpresscreme.com/how-to-add-a-simple-paypal-donation-link/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 13:19:07 +0000</pubDate>
		<dc:creator>Santiago</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://www.wordpresscreme.com/?p=233</guid>
		<description><![CDATA[function donate_shortcode( $atts ) { extract(shortcode_atts(array( 'text' =&#62; 'Make a donation', 'account' =&#62; 'REPLACE ME', 'for' =&#62; '', ), $atts)); global $post; if (!$for) $for = str_replace(" ","+",$post-&#62;post_title); return '&#60;a class="donateLink" href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&#38;business='.$account.'&#38;item_name=Donation+for+'.$for.'"&#62;'.$text.'&#60;/a&#62;'; } add_shortcode('donate', 'donate_shortcode'); Replace the default ‘account’ with your paypal email address, and output using [donate]. Remember you can override the default ‘text’ [...]]]></description>
		<wfw:commentRss>http://www.wordpresscreme.com/how-to-add-a-simple-paypal-donation-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display the Total Number of Posts on Your Blog</title>
		<link>http://www.wordpresscreme.com/how-to-display-the-total-number-of-posts-on-your-blog/</link>
		<comments>http://www.wordpresscreme.com/how-to-display-the-total-number-of-posts-on-your-blog/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 16:42:32 +0000</pubDate>
		<dc:creator>Santiago</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Posts]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://www.wordpresscreme.com/?p=132</guid>
		<description><![CDATA[A useful code snippet that displays how many posts you've made.]]></description>
		<wfw:commentRss>http://www.wordpresscreme.com/how-to-display-the-total-number-of-posts-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

