<?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; Tutorials</title>
	<atom:link href="http://denzeldesigns.com/category/tutorials/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>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>
	</channel>
</rss>
