<?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>Texo Blog... &#187; wordpress plugin</title>
	<atom:link href="http://www.texodev.com/category/wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.texodev.com</link>
	<description></description>
	<lastBuildDate>Thu, 25 Feb 2010 20:40:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Friday Photos Version 1.2</title>
		<link>http://www.texodev.com/2008/05/16/friday-photos-version-12/</link>
		<comments>http://www.texodev.com/2008/05/16/friday-photos-version-12/#comments</comments>
		<pubDate>Fri, 16 May 2008 21:52:06 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[friday photos]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.texodev.com/2008/05/16/friday-photos-version-12/</guid>
		<description><![CDATA[This release corrects two minor issues and implements a new feature.  First, the most significant issue corrected was that the number of photos added to the post wasn&#8217;t always returning the amount specified by the option &#8220;Max Number of Photos to Display&#8221;.  This was happening because the number of uniquely titled photos requested [...]]]></description>
			<content:encoded><![CDATA[<p>This release corrects two minor issues and implements a new feature.  First, the most significant issue corrected was that the number of photos added to the post wasn&#8217;t always returning the amount specified by the option &#8220;Max Number of Photos to Display&#8221;.  This was happening because the number of uniquely titled photos requested could be more than the number of photos recieved from the Flickr API call.  Essentially the correction required calling the Flickr API until the &#8220;Max Number of Photos to Display&#8221; value had been reached or no more photos were available that matched the search criteria.  The second issue required the renaming of the more_reccurences() and all references to it, to fridayphotos_more_reccurences().  This was to insure no collisions would occur with other plugins implementing this function.  A new feature was also added to this release it will allow for posts to be generated in statuses other than &#8220;published&#8221;.  This is managed on the Friday Photos&#8217; &#8220;Option&#8221; screen through a new DropDownBox titled &#8220;WordPress Post Status&#8221; that allows the user to select the appropriate status.  You can download the Version 1.2 of Friday Photos <a href="http://www.texodev.com/wp-content/uploads/2008/05/fridayphotos-12.zip" title="Friday Photos Version 1.2">here</a>.</p>

<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.texodev.com/2008/05/05/friday-photos-version-11/">Friday Photos Version 1.1</a></li>
<li><a href="http://www.texodev.com/2008/04/21/friday-photos-my-first-wordpress-plugin/">Friday Photos My First Wordpress Plugin</a></li>
</ul><br />
]]></content:encoded>
			<wfw:commentRss>http://www.texodev.com/2008/05/16/friday-photos-version-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friday Photos Version 1.1</title>
		<link>http://www.texodev.com/2008/05/05/friday-photos-version-11/</link>
		<comments>http://www.texodev.com/2008/05/05/friday-photos-version-11/#comments</comments>
		<pubDate>Mon, 05 May 2008 14:54:36 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[friday photos]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[slickr]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[YADD]]></category>

		<guid isPermaLink="false">http://www.texodev.com/2008/05/05/friday-photos-version-11/</guid>
		<description><![CDATA[Friday Photos Version 1.1 corrects two issues and implements a new feature.  First to support weekly scheduling the implementation of WP Pseudo Cron required a &#8220;weekly&#8221; interval value that isn&#8217;t part of the default cron_schedule filter.  To add this interval value the implementation of a filter function, as explained in the article Timing [...]]]></description>
			<content:encoded><![CDATA[<p>Friday Photos Version 1.1 corrects two issues and implements a new feature.  First to support weekly scheduling the implementation of WP Pseudo Cron required a &#8220;weekly&#8221; interval value that isn&#8217;t part of the default cron_schedule filter.  To add this interval value the implementation of a filter function, as explained in the article <a href="http://blog.slaven.net.au/archives/2007/02/01/timing-is-everything-scheduling-in-wordpress/">Timing is everything: scheduling in WordPress</a>, was needed.  The code is shown here:</p>
<p><code>function more_reccurences() {<br />
return array(<br />
'weekly' =&gt; array('interval' =&gt; 604800, 'display' =&gt; 'Once Weekly'),<br />
'fortnightly' =&gt; array('interval' =&gt; 1209600, 'display' =&gt; 'Once Fortnightly'),<br />
);<br />
}<br />
add_filter('cron_schedules', 'more_reccurences');<br />
</code><br />
Secondly the &#8220;Author&#8221; field wasn&#8217;t being set properly and required a small change to pass the field from the form to the database.  Additionally Friday Photos now supports the ability to pull in the picture&#8217;s description from Flickr.  This is handled through a new checkbox titled &#8220;Include Flickr Description&#8221; on the &#8220;Friday Photos&#8221; admin screen.  You can download the new version of Friday Photos <a href="http://www.texodev.com/wp-content/uploads/2008/05/fridayphotos.zip" title="Friday Photos">here</a>.</p>

<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.texodev.com/2008/05/16/friday-photos-version-12/">Friday Photos Version 1.2</a></li>
<li><a href="http://www.texodev.com/2008/04/21/friday-photos-my-first-wordpress-plugin/">Friday Photos My First Wordpress Plugin</a></li>
</ul><br />
]]></content:encoded>
			<wfw:commentRss>http://www.texodev.com/2008/05/05/friday-photos-version-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friday Photos My First Wordpress Plugin</title>
		<link>http://www.texodev.com/2008/04/21/friday-photos-my-first-wordpress-plugin/</link>
		<comments>http://www.texodev.com/2008/04/21/friday-photos-my-first-wordpress-plugin/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 07:05:32 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Slickr Gallery]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[YADD]]></category>

		<guid isPermaLink="false">http://www.texodev.com/2008/04/21/friday-photos-my-first-wordpress-plugin/</guid>
		<description><![CDATA[I was recently inspired to write my first Wordpress plugin, Friday Photos.  The Friday Photos plugin will access your Flickr account and create a weekly post of a specified number of pictures based on username and tags. The first release will require a Flickr API Key, Flickr Secret and Flickr Username to be entered [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently inspired to write my first Wordpress plugin, Friday Photos.  The Friday Photos plugin will access your Flickr account and create a weekly post of a specified number of pictures based on username and tags. The first release will require a Flickr API Key, Flickr Secret and Flickr Username to be entered on the Friday Photos Options screen.  (see screen shot below) Future releases will pull the description field and tags from Flickr, improve photo selection options, and add Flickr video support.</p>
<p><img src="http://www.texodev.com/wp-content/uploads/2008/04/fridayphotosoptions_x500.png" alt="fridayphotosoptions_x500.png" /></p>
<p>The plugin draws on the code and ideas of two great plugins, the Slickr Gallery and Yet Another Daily Delicious. As this was my first attempt at writing a plugin the challenge of learning phpFlickr, the Flickr API, the basics of Wordpress Plugin design, and how WP Pseudo Cron works all at once was challenging but with these well done plugins to look at it proved a very doable project.</p>
<p>A sample post can be seen live on the blog <a href="http://www.mkedevelopment.com/2008/04/18/photos/">Milwaukee Development Update</a> and starting Friday April 25th 2008, the site <a href="http://fridayphotos.texodev.com">Friday Photos</a>, will use the plugin to display weekly photos.  The Friday Photos site will be the place to look for new releases and additional documentation for the Friday Photos Plugin.</p>
<p>To try out this plugin yourself:</p>
<ol>
<li>Download <a href="http://www.texodev.com/wp-content/uploads/2008/04/fridayphotos.zip" title="Friday Photos">Friday Photos</a></li>
<li>Upload the plugin into your wp-content/plugins directory</li>
<li>Extract the .zip file</li>
<li>Activate the plugin in the plugin administration page</li>
<li>Open the plugin configuration page, which is located under Options -&gt; Friday Photos and enter your Flickr username, <a href="http://www.flickr.com/services/api/keys/apply/">Flickr API Key</a>, Flickr Secret and additional paramaters.  To obtain a Flickr API Key click <a href="http://www.flickr.com/services/api/keys/apply/">here</a></li>
<li>The plugin will automatically create a Friday post of pictures from your Flickr Account</li>
</ol>

<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.texodev.com/2008/05/16/friday-photos-version-12/">Friday Photos Version 1.2</a></li>
<li><a href="http://www.texodev.com/2008/05/05/friday-photos-version-11/">Friday Photos Version 1.1</a></li>
</ul><br />
]]></content:encoded>
			<wfw:commentRss>http://www.texodev.com/2008/04/21/friday-photos-my-first-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
