<?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>Denzel Designs &#187; Recent Posts</title>
	<atom:link href="http://denzeldesigns.com/category/recent-post/feed/" rel="self" type="application/rss+xml" />
	<link>http://denzeldesigns.com</link>
	<description>Singapore WordPress Plugin and Theme Developer</description>
	<lastBuildDate>Thu, 17 Dec 2009 06:59:58 +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>Changes to post image function names in WP2.9RC1</title>
		<link>http://denzeldesigns.com/2009/12/changes-to-has_post_image-and-the_post_image-in-wp2-9rc1/</link>
		<comments>http://denzeldesigns.com/2009/12/changes-to-has_post_image-and-the_post_image-in-wp2-9rc1/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 06:57:46 +0000</pubDate>
		<dc:creator>Denzel</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://denzeldesigns.com/?p=359</guid>
		<description><![CDATA[has_post_image() has been changed to has_post_thumbnail() and.....]]></description>
			<content:encoded><![CDATA[<p>Upgraded to WordPress 2.9 RC 1 in my localhost and got function errors saying has_post_image() is undefined.</p>
<p>I thought I had upgraded my theme to use the WordPress 2.9 post thumbnail feature. But why the error?</p>
<p>After searching online for answers. I came across this thread in <a href="http://www.wptavern.com/forum/troubleshooting/1102-2-9-bug.html" target="_blank">WordPress Taven</a> mentioning the changing of the function names.</p>
<p>Apparently, has_post_image() has been changed to has_post_thumbnail() and the_post_image() has been changed to the_post_thumbnail().</p>
]]></content:encoded>
			<wfw:commentRss>http://denzeldesigns.com/2009/12/changes-to-has_post_image-and-the_post_image-in-wp2-9rc1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Change maximum file upload size in WordPress</title>
		<link>http://denzeldesigns.com/2009/11/wordpress-maximum-upload-size/</link>
		<comments>http://denzeldesigns.com/2009/11/wordpress-maximum-upload-size/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 09:14:12 +0000</pubDate>
		<dc:creator>Denzel</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[max upload size]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://denzeldesigns.com/?p=349</guid>
		<description><![CDATA[How to change maximum file upload size.]]></description>
			<content:encoded><![CDATA[<p>Recently encountered a problem when uploading a large video to my web hosting server, for testing out my new WordPress Plugin to play self-hosted videos. I found out that the web hosting provider only allows 2M uploads by default. So, I checked with my web hosting provider (Hostmonster.com), and the online support says the maximum upload limit can be changed, up to 50M. So, I googled more and came up with the following solution.</p>
<p>1. Check with your web hosting provider for the maximum file uploading size allowed.</p>
<p>2. Create a text file named php.ini with the following content to change the default php setting.</p>
<pre class="brush: php;">

[PHP]
upload_max_filesize = 50M
post_max_size = 50M
</pre>
<p>3. Upload the newly created php.ini into WordPress wp-admin folder. There is no need to upload php.ini to other folders.</p>
<p>That&#8217;s it.</p>
<p><em>P.S. Please note that there is no option in WordPress to change the file upload size. It is controlled by the Web Hosting Provider.<br />
I am using PHP5 configuration and not the PHP fastcgi. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://denzeldesigns.com/2009/11/wordpress-maximum-upload-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expanded My Post Meta Box</title>
		<link>http://denzeldesigns.com/2009/11/expanded-my-post-meta-box/</link>
		<comments>http://denzeldesigns.com/2009/11/expanded-my-post-meta-box/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 19:29:43 +0000</pubDate>
		<dc:creator>Denzel</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Meta Box]]></category>

		<guid isPermaLink="false">http://denzeldesigns.com/?p=340</guid>
		<description><![CDATA[I specially coded a meta box for my theme to control my theme layout]]></description>
			<content:encoded><![CDATA[<p>Here is a screenshot of my theme admin meta box.</p>
<p><a href="http://denzeldesigns.com/wp-content/uploads/2009/11/AdminMetaBox.png"><img class="alignnone size-large wp-image-341" title="AdminMetaBox" src="http://denzeldesigns.com/wp-content/uploads/2009/11/AdminMetaBox-1024x640.png" alt="AdminMetaBox" width="100%" /></a></p>
<p>I specially coded a meta box for my theme, so that I can control my theme layout more efficiently. There are custom field settings for post thumbnail, tweetcount button, post banner, add to cart button, view cart button, etc. There is a list of sidebar for me to choose, so that I can have any sidebar I want for that particular post or page!</p>
<p>Anyone interested to know can read up on the tutorial on <a href="http://codex.wordpress.org/Function_Reference/add_meta_box">WordPress Codex</a>. If you want to code a Post Meta Box for your theme, you can always hire me!</p>
]]></content:encoded>
			<wfw:commentRss>http://denzeldesigns.com/2009/11/expanded-my-post-meta-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks for Rating My Plugin</title>
		<link>http://denzeldesigns.com/2009/08/thanks-for-rating-my-plugin/</link>
		<comments>http://denzeldesigns.com/2009/08/thanks-for-rating-my-plugin/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 14:29:14 +0000</pubDate>
		<dc:creator>Denzel</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://denzeldesigns.com/?p=317</guid>
		<description><![CDATA[Thank you for the 5 star ratings!]]></description>
			<content:encoded><![CDATA[<p>Today I noticed that two person had given video sidebar widgets a 5 star rating on WordPress Plugin Directory. I would like to say thank you for giving such high ratings! Happy to see somebody appreciating my work!</p>
<p>Hope more users or developers give my plugin a high rating!</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://denzeldesigns.com/2009/08/thanks-for-rating-my-plugin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Video Sidebar Widgets Update</title>
		<link>http://denzeldesigns.com/2009/08/video-sidebar-widgets-update/</link>
		<comments>http://denzeldesigns.com/2009/08/video-sidebar-widgets-update/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 08:37:59 +0000</pubDate>
		<dc:creator>Denzel</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[plugin updates]]></category>

		<guid isPermaLink="false">http://denzeldesigns.com/?p=314</guid>
		<description><![CDATA[Updated to Version 2.2 to include support for videos from tangle.com]]></description>
			<content:encoded><![CDATA[<p>Updated to Version 2.2 to include support for videos from <a href="http://tangle.com">tangle.com</a></p>
<p>Decided to include tangle.com because of a song called New Creation found on <a href="http://closertothestart.com/page/2"> Closer to The Start</a></p>
<p>Accidentally stumbled upon this song from tangle.com and decided to check out closertothestart.com and found the same video on vimeo. So here it is, enjoy!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="302" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="best" /><param name="scale" value="showAll" /><param name="allowfullscreen" value="true" /><param name="wmode" value="transparent" /><param name="src" value="http://www.vimeo.com/moogaloop.swf?clip_id=1797430&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00adef" /><embed type="application/x-shockwave-flash" width="400" height="302" src="http://www.vimeo.com/moogaloop.swf?clip_id=1797430&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00adef" wmode="transparent" allowfullscreen="true" scale="showAll" quality="best"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://denzeldesigns.com/2009/08/video-sidebar-widgets-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable Plugin upgrade notification</title>
		<link>http://denzeldesigns.com/2009/07/how-to-disable-plugin-upgrade-notification/</link>
		<comments>http://denzeldesigns.com/2009/07/how-to-disable-plugin-upgrade-notification/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 16:44:04 +0000</pubDate>
		<dc:creator>Denzel</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[disable plugin notification]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://denzeldesigns.com/2009/07/how-to-disable-plugin-upgrade-notification/</guid>
		<description><![CDATA[If for any reason you do not want to upgrade and wants to disable the notification]]></description>
			<content:encoded><![CDATA[<p>Whenever there is a plugin upgrade WordPress will display a notification in your plugins admin.</p>
<p>If for any reason you do not want to upgrade and wants to disable the notification, Just change the version number in the plugin&#8217;s main php file.</p>
<p>For example, if you do not want to upgrade Video Sidebar Widgets to version 2.1, as this version is only an inclusion of support for  Google Videos and you do not need it. Just open video-sidebar-widgets.php using the plugin editor and change the version number to a greater number. The version number can be found on the top of the plugin file.</p>
<pre class="brush: php;">
/*
Plugin Name: Video Sidebar Widgets
Plugin URI: http://denzeldesigns.com/wordpress-plugins/video-sidebar-widgets/
Version: 2.0
Description: A video sidebar widget using WordPress 2.8 Widgets API to display videos such as Vimeo, YouTube, MySpace Videos etc. Requires at least WordPress 2.8.1. Now including Random Video Sidebar Widget to randomly display 1 out of 5 preset video.
Author: Denzel Chia
Author URI: http://denzeldesigns.com/
*/
</pre>
<p>Just change Version 2.0 to 4.0 and the notification will disappear.</p>
]]></content:encoded>
			<wfw:commentRss>http://denzeldesigns.com/2009/07/how-to-disable-plugin-upgrade-notification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thank you for using my plugins!</title>
		<link>http://denzeldesigns.com/2009/07/thank-you-for-using-my-plugins/</link>
		<comments>http://denzeldesigns.com/2009/07/thank-you-for-using-my-plugins/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 14:35:01 +0000</pubDate>
		<dc:creator>Denzel</dc:creator>
				<category><![CDATA[Recent Posts]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://denzeldesigns.com/?p=303</guid>
		<description><![CDATA[Thanks to all WordPress Bloggers who use my plugins.]]></description>
			<content:encoded><![CDATA[<p>These few days have been the happiest times since I started writing WordPress Plugins. There has been a spike in traffic on this site and all thanks to WordPress Bloggers who use my plugins. Especially, users of Video Sidebar Widgets. Thanks to users who tweeted about Video Sidebar Widgets as WordPress Plugin of the day!</p>
]]></content:encoded>
			<wfw:commentRss>http://denzeldesigns.com/2009/07/thank-you-for-using-my-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
