<?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>WpFunc &#187; update</title>
	<atom:link href="http://wpfunc.com/tag/update/feed" rel="self" type="application/rss+xml" />
	<link>http://wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Sun, 06 May 2012 02:21:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Auto Attachments Updated to 0.2.6</title>
		<link>http://wpfunc.com/wordpress/auto-attachments-updated-to-0-2-6.html</link>
		<comments>http://wpfunc.com/wordpress/auto-attachments-updated-to-0-2-6.html#comments</comments>
		<pubDate>Fri, 03 Jun 2011 11:39:06 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[attachments]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[auto attachments]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=490</guid>
		<description><![CDATA[As you know i released Auto Attacments Plugin. The plugin determine your article&#8217;s attachment files, make a download area for files and embed a player for mp3 and video files. Now the plugin has more effective admin area and you can decide some options. You can enable or disable rar upload support and decide to [...]]]></description>
			<content:encoded><![CDATA[<p>As you know i released Auto Attacments Plugin. The plugin determine your article&#8217;s attachment files, make a download area for files and embed a player for mp3 and video files.<span id="more-490"></span></p>
<p>Now the plugin has more effective admin area and you can decide some options. You can enable or disable rar upload support and decide to show audio and video file header text display. And plugin now multilingual.</p>
<p>I added Facebook like and share buttons for WorpdPress Auto Attachments Plugin Page. You can share with your friends now :)</p>
<p>You can download plugin from here: <a title="Auto Attachments WordPress.org plugin page" href="http://wordpress.org/extend/plugins/auto-attachments/" target="_blank">WordPress &gt; Auto Attachments </a></p>
<p>And you can acces other auto attachments info articles <a title="Auto Attachments Plugin!" href="http://www.wpfunc.com/wordpress/auto-attachments-plugin.html" target="_blank">here</a> and <a title="Auto Attachments Updated to 0.2.4" href="http://www.wpfunc.com/wordpress/auto-attachments-updated-to-0-2-4.html" target="_blank">here</a></p>
<p>The admin area interface; TURKISH | ENGLISH</p>
<p><a class="highslide img_3" href="http://www.wpfunc.com/wp-content/uploads/2011/06/aa-admin.png" onclick="return hs.expand(this)"><img class="size-medium wp-image-492 alignleft" title="aa-admin" src="http://www.wpfunc.com/wp-content/uploads/2011/06/aa-admin-300x203.png" alt="" width="300" height="203" /></a><a class="highslide img_4" href="http://www.wpfunc.com/wp-content/uploads/2011/06/screenshot.png" onclick="return hs.expand(this)"><img class="aligncenter size-medium wp-image-495" title="screenshot" src="http://www.wpfunc.com/wp-content/uploads/2011/06/screenshot-300x236.png" alt="" width="300" height="236" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/auto-attachments-updated-to-0-2-6.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Delay your feed updates</title>
		<link>http://wpfunc.com/wordpress/delay-your-feed-updates.html</link>
		<comments>http://wpfunc.com/wordpress/delay-your-feed-updates.html#comments</comments>
		<pubDate>Thu, 01 Jul 2010 07:47:49 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[delay]]></category>
		<category><![CDATA[delay time]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[publish time]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=454</guid>
		<description><![CDATA[You can set the feed update time with a simple function. The only need you have to edit your theme&#8217;s functions.php. Let&#8217;s Begin. Here is the code; With this code update will wait for 5 minutes. You can chnge this time period. Just change $wait value for this. That&#8217;s All. Have a nice day.]]></description>
			<content:encoded><![CDATA[<p>You can set the feed update time with a simple function. The only need you have to edit your theme&#8217;s functions.php. Let&#8217;s Begin.<span id="more-454"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php; title: ; notranslate">// delay feed update
function publish_later_on_feed($where) {
	global $wpdb;

	if (is_feed()) {
		// timestamp in WP-format
		$now = gmdate('Y-m-d H:i:s');

		// value for wait; + device
		$wait = '5'; // integer

		// http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_timestampdiff
		$device = 'MINUTE'; // MINUTE, HOUR, DAY, WEEK, MONTH, YEAR

		// add SQL-sytax to default $where
		$where .= &quot; AND TIMESTAMPDIFF($device, $wpdb-&gt;posts.post_date_gmt, '$now') &gt; $wait &quot;;
	}
	return $where;
}
add_filter('posts_where', 'publish_later_on_feed');</pre>
<p>With this code update will wait for 5 minutes. You can chnge this time period. Just change <span style="color: #ff0000;"><strong>$wait</strong></span> value for this.<br />
That&#8217;s All. Have a nice day.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/delay-your-feed-updates.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contact Form 7 Changes Plugin Admin Path!</title>
		<link>http://wpfunc.com/wordpress/contact-form-7-changes-plugin-admin-path.html</link>
		<comments>http://wpfunc.com/wordpress/contact-form-7-changes-plugin-admin-path.html#comments</comments>
		<pubDate>Wed, 22 Jul 2009 21:46:47 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[changes]]></category>
		<category><![CDATA[colored tag cloud]]></category>
		<category><![CDATA[contact form 7]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[randomize]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=99</guid>
		<description><![CDATA[When i login to my admin area i looked at my Plugin updates. i had 2 upgrades. First Conatct Form 7 and second one is Colored Tag Cloud. When i update Contact Form 7 i want to look new abilities but i can&#8217;t found it under Tools Tab :) After i make a little search [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">When i login to my admin area i looked at my Plugin updates. i had 2 upgrades. First Conatct Form 7 and second one is Colored Tag Cloud. When i update<strong><em> <a href="http://ideasilo.wordpress.com/2007/04/30/contact-form-7/" target="_blank">Contact Form 7</a></em></strong> i want to look new abilities but i can&#8217;t found it under Tools Tab :) After i make a little search and i found where is my plugin setting page :D Contact Form 7 have a new location is in after the Settings Tab. Some plugins (twitme, nextgen gallery) have a special button. Contact Form 7 have a new special button also.<span id="more-99"></span></p>
<p style="text-align: justify;">And my second update about <strong><em>Colored Tag Cloud</em></strong>. One week before i wrote a <a href="http://ilikewordpress.com/colored-tag-cloud-for-wordpress-blogs/#comment-126" target="_blank">comment</a> on <a href="http://ilikewordpress.com/colored-tag-cloud-for-wordpress-blogs/" target="_blank">plugins page</a>. This comment was about Randomize tag cloud. i add a code here. Today, when i update the plugin i check plugin&#8217;s file. He add a new <em><strong>RAND</strong></em> tag to this code. Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/contact-form-7-changes-plugin-admin-path.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

