<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Huge Compilation of WordPress Code</title>
	<atom:link href="http://wphacks.com/huge-compilation-of-wordpress-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://wphacks.com/huge-compilation-of-wordpress-code/</link>
	<description>WordPress Themes, Plugins, Hacks, Tutorials, and more!</description>
	<lastBuildDate>Fri, 19 Mar 2010 22:31:16 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Calliarc</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12546</link>
		<dc:creator>Calliarc</dc:creator>
		<pubDate>Sat, 16 Jan 2010 10:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12546</guid>
		<description>Thank you for you valuable codes</description>
		<content:encoded><![CDATA[<p>Thank you for you valuable codes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12525</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Thu, 14 Jan 2010 16:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12525</guid>
		<description>Just discovered this invaluable resource. Thank you very much!</description>
		<content:encoded><![CDATA[<p>Just discovered this invaluable resource. Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rachiegirl</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12508</link>
		<dc:creator>rachiegirl</dc:creator>
		<pubDate>Wed, 13 Jan 2010 13:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12508</guid>
		<description>very new to WP.
i want to use &quot;Display an External RSS Feed&quot; on a  page, but the php doesn&#039;t process. The page just displays actual code. what am I doing wrong?

here is the page: http://webmztriss.com/?page_id=363

please help a newbie. :)</description>
		<content:encoded><![CDATA[<p>very new to WP.<br />
i want to use &#8220;Display an External RSS Feed&#8221; on a  page, but the php doesn&#8217;t process. The page just displays actual code. what am I doing wrong?</p>
<p>here is the page: <a href="http://webmztriss.com/?page_id=363" rel="nofollow">http://webmztriss.com/?page_id=363</a></p>
<p>please help a newbie. <img src='http://wphacks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Display Recently Updated Posts/Pages &#124; WordPressious</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12444</link>
		<dc:creator>Display Recently Updated Posts/Pages &#124; WordPressious</dc:creator>
		<pubDate>Sat, 09 Jan 2010 12:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12444</guid>
		<description>[...] In order to display the recently updated posts/pages in your WordPress blog/website you can use the following code: &lt;?php $today = current_time(&#039;mysql&#039;, 1); $howMany = 5; //Number of posts you want to display if ( $recentposts = $wpdb-&gt;get_results(&quot;SELECT ID, post_title FROM $wpdb-&gt;posts WHERE post_status = &#039;publish&#039; AND post_modified_gmt &lt; &#039;$today&#039; ORDER BY post_modified_gmt DESC LIMIT $howMany&quot;)): ?&gt; &lt;h2&gt;&lt;?php _e(&quot;Recent Updates&quot;); ?&gt;&lt;/h2&gt; &lt;ul&gt; &lt;?php foreach ($recentposts as $post) { if ($post-&gt;post_title == &#039;&#039;) $post-&gt;post_title = sprintf(__(&#039;Post #%s&#039;), $post-&gt;ID); echo &quot;&lt;li&gt;&lt;a href=&#039;&quot;.get_permalink($post-&gt;ID).&quot;&#039;&gt;&quot;; the_title(); echo &#039;&lt;/a&gt;&lt;/li&gt;&#039;; } ?&gt; &lt;/ul&gt; &lt;?php endif; ?&gt; Source: www.wphacks.com/huge-compilation-of-wordpress-code/ [...]</description>
		<content:encoded><![CDATA[<p>[...] In order to display the recently updated posts/pages in your WordPress blog/website you can use the following code: &lt;?php $today = current_time(&#39;mysql&#39;, 1); $howMany = 5; //Number of posts you want to display if ( $recentposts = $wpdb-&gt;get_results(&quot;SELECT ID, post_title FROM $wpdb-&gt;posts WHERE post_status = &#39;publish&#39; AND post_modified_gmt &lt; &#39;$today&#39; ORDER BY post_modified_gmt DESC LIMIT $howMany&quot;)): ?&gt; &lt;h2&gt;&lt;?php _e(&quot;Recent Updates&quot;); ?&gt;&lt;/h2&gt; &lt;ul&gt; &lt;?php foreach ($recentposts as $post) { if ($post-&gt;post_title == &#39;&#39;) $post-&gt;post_title = sprintf(__(&#39;Post #%s&#39;), $post-&gt;ID); echo &quot;&lt;li&gt;&lt;a href=&#39;&quot;.get_permalink($post-&gt;ID).&quot;&#39;&gt;&quot;; the_title(); echo &#39;&lt;/a&gt;&lt;/li&gt;&#39;; } ?&gt; &lt;/ul&gt; &lt;?php endif; ?&gt; Source: <a href="http://www.wphacks.com/huge-compilation-of-wordpress-code/" rel="nofollow">http://www.wphacks.com/huge-compilation-of-wordpress-code/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Display Recent Posts &#124; WordPressious</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12349</link>
		<dc:creator>Display Recent Posts &#124; WordPressious</dc:creator>
		<pubDate>Mon, 04 Jan 2010 15:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12349</guid>
		<description>[...] Source: www.wphacks.com/huge-compilation-of-wordpress-code/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Source: <a href="http://www.wphacks.com/huge-compilation-of-wordpress-code/" rel="nofollow">http://www.wphacks.com/huge-compilation-of-wordpress-code/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaston Suarez Duek</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12304</link>
		<dc:creator>Gaston Suarez Duek</dc:creator>
		<pubDate>Thu, 31 Dec 2009 21:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-12304</guid>
		<description>Excelent! I will bookmark this post and use it whenever I need It! Thx!</description>
		<content:encoded><![CDATA[<p>Excelent! I will bookmark this post and use it whenever I need It! Thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#160; 10 Handy WordPress Comments Hacks&#160;by&#160;Oshoamy</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-11850</link>
		<dc:creator>&#160; 10 Handy WordPress Comments Hacks&#160;by&#160;Oshoamy</dc:creator>
		<pubDate>Mon, 14 Dec 2009 12:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-11850</guid>
		<description>[...] Huge Compilation of WordPress Code [...]</description>
		<content:encoded><![CDATA[<p>[...] Huge Compilation of WordPress Code [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-11802</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Sat, 12 Dec 2009 02:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-11802</guid>
		<description>I want to insert a png file with my logo where the header is. Is there a simple way to do this? Also, I want to post a podcast - how is this done.

I have thesis... and I wish that there was a button inside that you could simply click, upload your image and there was your own logo. The RV builder in cpanel will let you, but wordpress and/or thesis won&#039;t. I am not a programmer, just want it to work.

I am frustrated. I look forward to your reply.</description>
		<content:encoded><![CDATA[<p>I want to insert a png file with my logo where the header is. Is there a simple way to do this? Also, I want to post a podcast &#8211; how is this done.</p>
<p>I have thesis&#8230; and I wish that there was a button inside that you could simply click, upload your image and there was your own logo. The RV builder in cpanel will let you, but wordpress and/or thesis won&#8217;t. I am not a programmer, just want it to work.</p>
<p>I am frustrated. I look forward to your reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2009-11-17 &#171; Free Open Source Directory</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-10841</link>
		<dc:creator>links for 2009-11-17 &#171; Free Open Source Directory</dc:creator>
		<pubDate>Wed, 18 Nov 2009 01:03:41 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-10841</guid>
		<description>[...] Huge Compilation of WordPress Code Here are the snippets of code I’ve managed to collect. If you have any WordPress code you’d like me to add, please leave a comment below! (tags: Huge Compilation of WordPress Code) [...]</description>
		<content:encoded><![CDATA[<p>[...] Huge Compilation of WordPress Code Here are the snippets of code I’ve managed to collect. If you have any WordPress code you’d like me to add, please leave a comment below! (tags: Huge Compilation of WordPress Code) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blogsolute</title>
		<link>http://wphacks.com/huge-compilation-of-wordpress-code/#comment-10217</link>
		<dc:creator>Blogsolute</dc:creator>
		<pubDate>Tue, 13 Oct 2009 17:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://wphacks.com/huge-compilation-of-wordpress-code/#comment-10217</guid>
		<description>Helped me a lot customizing my theme. Thanks</description>
		<content:encoded><![CDATA[<p>Helped me a lot customizing my theme. Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
