<?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>SDAC Inc &#124; Chicagoland Web Development &#187; WordPress</title> <atom:link href="http://www.sandboxdev.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" /><link>http://www.sandboxdev.com</link> <description>Just another Sandbox Development and Consulting Inc. Sites site</description> <lastBuildDate>Wed, 25 Jan 2012 07:57:33 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Easily Add Page Excerpts in WordPress</title><link>http://www.sandboxdev.com/2011/08/09/easily-add-page-excerpts-in-wordpress/</link> <comments>http://www.sandboxdev.com/2011/08/09/easily-add-page-excerpts-in-wordpress/#comments</comments> <pubDate>Tue, 09 Aug 2011 14:40:53 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[add_post_type_support]]></category> <category><![CDATA[functions.php]]></category> <category><![CDATA[the_excerpt]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1419</guid> <description><![CDATA[Ever need to add an excerpt field for WordPress when working with pages? There is an easy, one line way to do this (no plugin needed). Simply add this to your theme&#8217;s functions.php file: Once you have that in place &#8211; you can then use the WordPress the_excerpt() function to show the excerpt within the [...]]]></description> <content:encoded><![CDATA[<p>Ever need to add an excerpt field for WordPress when working with pages?  There is an easy, one line way to do this (no plugin needed).  Simply add this to your theme&#8217;s functions.php file:</p><pre class="brush: php; title: Custom Code; notranslate">
add_post_type_support( 'page', 'excerpt' );
</pre><p>Once you have that in place &#8211; you can then use the WordPress the_excerpt() function to show the excerpt within the theme.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/08/09/easily-add-page-excerpts-in-wordpress/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>WordPress 3.2 is Available</title><link>http://www.sandboxdev.com/2011/07/06/wordpress-3-2-is-available/</link> <comments>http://www.sandboxdev.com/2011/07/06/wordpress-3-2-is-available/#comments</comments> <pubDate>Wed, 06 Jul 2011 14:51:04 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Updates]]></category> <category><![CDATA[WordPress 3.2]]></category> <category><![CDATA[WordPress Update]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1416</guid> <description><![CDATA[WordPress 3.2 has officially been released. The update contains a number of changes making WordPress faster with a refreshed backend user interface. You can read more about all the changes and updates that went into 3.2 if you are interested. You can also see all the specific changes/fixes as well. Download the latest versions of [...]]]></description> <content:encoded><![CDATA[<p>WordPress 3.2 has officially been released. The update contains a number of changes making WordPress faster with a refreshed backend user interface.  You can read more about <a
href="http://codex.wordpress.org/Version_3.2">all the changes and updates that went into 3.2</a> if you are interested.  You can also <a
href="http://core.trac.wordpress.org/query?status=closed&amp;group=resolution&amp;order=priority&amp;milestone=3.2&amp;resolution=fixed">see all the specific changes/fixes</a> as well.</p><p>Download the latest versions of WordPress: <a
href="http://wordpress.org/wordpress-3.2.zip">WordPress 3.2</a></p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/07/06/wordpress-3-2-is-available/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Using meta_query With WordPress 3.1+</title><link>http://www.sandboxdev.com/2011/04/14/using-meta_query-with-wordpress-3-1/</link> <comments>http://www.sandboxdev.com/2011/04/14/using-meta_query-with-wordpress-3-1/#comments</comments> <pubDate>Thu, 14 Apr 2011 18:29:58 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Logic]]></category> <category><![CDATA[WordPress function]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1334</guid> <description><![CDATA[With WordPress 3.1 &#8211; we now have the ability to use &#8220;meta_query&#8221; to show posts associated with a certain custom field. I recently used this in order to create an events listing widget for a client. I needed to query posts in the &#8220;Events&#8221; category and that had a time stamp defined (which happened to [...]]]></description> <content:encoded><![CDATA[<p>With WordPress 3.1 &#8211; we now have the ability to use &#8220;meta_query&#8221; to show posts associated with a certain custom field. I recently used this in order to create an events listing widget for a client.  I needed to query posts in the &#8220;Events&#8221; category and that had a time stamp defined (which happened to be the start date of the event).  The client wanted to show only current/future events (today or later) and wanted to show them in order by the closest event date to the furthest away.</p><p>Getting the general query together was a snap &#8211; but the orderby did not work unless I had the meta_key defined (this is documented but was overlooked initially).</p><p><strong>Example</strong></p><pre class="brush: php; title: Custom Code; notranslate">
$now = time();
$args = array(
	'category_name' =&amp;gt; 'Events',
	'meta_query' =&amp;gt; array(
		array(
			'key' =&amp;gt; 'sdac_event_time_stamp',
			'value' =&amp;gt; $now,
			'compare' =&amp;gt; '&amp;gt;=',
			'type' =&amp;gt; 'NUMERIC'
		)
	),
	'meta_key' =&amp;gt; 'sdac_event_time_stamp',
	'order' =&amp;gt; 'ASC',
	'orderby' =&amp;gt; 'meta_value_num'
 );
$events_query = new WP_Query( $args);
</pre><p>If you take a look at the query itself &#8211; the trick was to capture the time now ($now) and then use the compare within the meta_query.  Overall &#8211; this sort of query makes working with custom fields a lot easier.  If you have not checked it out yet &#8211; take a look.</p><p><strong>Documentation</strong><br
/> <a
href="http://codex.wordpress.org/Function_Reference/WP_Query" target="_blank">Function Reference/WP Query</a></p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/04/14/using-meta_query-with-wordpress-3-1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Taxonomy Query (Keep it Simple)</title><link>http://www.sandboxdev.com/2011/02/24/wordpress-taxonomy-query-keep-it-simple/</link> <comments>http://www.sandboxdev.com/2011/02/24/wordpress-taxonomy-query-keep-it-simple/#comments</comments> <pubDate>Thu, 24 Feb 2011 20:23:26 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Logic]]></category> <category><![CDATA[query_posts]]></category> <category><![CDATA[taxonomies]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1253</guid> <description><![CDATA[Now that a number of people are using more and more custom taxonomies for WordPress &#8211; custom taxonomy queries are something becoming necessary. Example: You have a WordPress site set up to show/sell products (in this example &#8211; you sell books and posters). You have a custom taxonomy called &#8220;catalog&#8221; that you use to organize [...]]]></description> <content:encoded><![CDATA[<p>Now that a number of people are using more and more custom taxonomies for WordPress &#8211; custom taxonomy queries are something becoming necessary.</p><p>Example: You have a WordPress site set up to show/sell products (in this example &#8211; you sell books and posters).  You have a custom taxonomy called &#8220;catalog&#8221; that you use to organize all the products.</p><p>If you want to show all items that are marked &#8220;posters&#8221; in your custom catalog taxonomy you can simply use this query:</p><pre class="brush: php; title: Custom Code; notranslate">
query_posts( array( 'catalog' =&amp;gt; 'posters' ) );
</pre><p>Of course &#8211; you can create more complicated custom taxonomy queries, but this will get you started.  By using custom taxonomies (and custom post types) &#8211; you can really open the door to creating complex content management systems (and/or really cool sites that need something more than your standard categories/tags/posts/pages).</p><p>Further documentation: <a
href="http://codex.wordpress.org/Function_Reference/query_posts" target="_blank">http://codex.wordpress.org/Function_Reference/query_posts</a></p><p>Remember &#8211; keep it simple!</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2011/02/24/wordpress-taxonomy-query-keep-it-simple/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Custom Post Types Open the Door&#8230;</title><link>http://www.sandboxdev.com/2010/11/05/custom-post-types-open-the-door/</link> <comments>http://www.sandboxdev.com/2010/11/05/custom-post-types-open-the-door/#comments</comments> <pubDate>Fri, 05 Nov 2010 18:55:03 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[WordPress Plugins]]></category> <category><![CDATA[custom post types]]></category> <category><![CDATA[Ideas]]></category> <category><![CDATA[WordPress]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1123</guid> <description><![CDATA[For the last five projects we have been working on &#8211; we have used Custom Post Types for all of them. While we first thought these were pretty cool to work with &#8211; we have since realized that these are amazing. We have implemented user submitted media, events, profiles, vendors, contributors, etc all using Custom [...]]]></description> <content:encoded><![CDATA[<p>For the last five projects we have been working on &#8211; we have used <a
href="http://codex.wordpress.org/Custom_Post_Types">Custom Post Types</a> for all of them.  While we first thought these were pretty cool to work with &#8211; we have since realized that these are amazing. We have implemented user submitted media, events, profiles, vendors, contributors, etc all using Custom Post Types. Since we would like to share the love&#8230;we are looking to make some really awesome plugins for the community.  Anyone have something they think would be really cool and that would help a lot of people?</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2010/11/05/custom-post-types-open-the-door/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>More Fun with WordPress Screen Options</title><link>http://www.sandboxdev.com/2010/09/28/more-fun-with-wordpress-screen-options/</link> <comments>http://www.sandboxdev.com/2010/09/28/more-fun-with-wordpress-screen-options/#comments</comments> <pubDate>Tue, 28 Sep 2010 14:33:11 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Screen Options]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=1029</guid> <description><![CDATA[After taking a look at &#8220;Screen Options&#8221; on the WordPress menus page (Appearance &#62; Menus) &#8211; I decided to spend some time going through the different &#8220;Screen Options&#8221; on each admin page view and would highly recommend you doing the same. This very useful tab allows you to: Choose what you see on the dashboard [...]]]></description> <content:encoded><![CDATA[<p><div
id="attachment_1030" class="wp-caption alignleft" style="width: 327px"><img
src="http://www.sandboxdev.com/files/2010/09/screen-options.png" alt="" width="317" height="70" class="size-full wp-image-1030" /><p
class="wp-caption-text">Unlock the power of screen options</p></div> After taking a look at &#8220;Screen Options&#8221; on the WordPress menus page (Appearance &gt; Menus) &#8211; I decided to spend some time going through the different &#8220;Screen Options&#8221; on each admin page view and would highly recommend you doing the same.  This very useful tab allows you to:</p><ul><li>Choose what you see on the dashboard (and how it is displayed)</li><li>Show/hide fields on the edit post page</li><li>Choose the number of posts/pages/categories/tags/plugins/users you see in those listings (great if you want to show more than the default number)</li><li>Show/hide columns in the posts/pages/categories/tags/plugins/users listings</li><li>Enable/disable accessibility mode (Appearance &gt; Widgets)</li><li>Show/hide different options in WordPress menus (like mentioned in the previous post)</li></ul><p>If you plan to spend a lot of time in the backend of WordPress &#8211; do yourself a favor and get familiar with these options as you will at some point find something useful about those options.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2010/09/28/more-fun-with-wordpress-screen-options/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Include or Exclude Category for RSS Feed or Search</title><link>http://www.sandboxdev.com/2010/06/16/include-or-exclude-category-for-rss-feed-or-search/</link> <comments>http://www.sandboxdev.com/2010/06/16/include-or-exclude-category-for-rss-feed-or-search/#comments</comments> <pubDate>Wed, 16 Jun 2010 18:12:58 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[exclude]]></category> <category><![CDATA[Include]]></category> <category><![CDATA[WordPress functions]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=818</guid> <description><![CDATA[There are certain times when you need to include or exclude certain categories in the feed or search results. The easiest way to take care of this is to add the following to your functions.php file. The code above will exclude all posts that are in the category with ID 1 from your feed. If [...]]]></description> <content:encoded><![CDATA[<p>There are certain times when you need to include or exclude certain categories in the feed or search results. The easiest way to take care of this is to add the following to your functions.php file.</p><pre class="brush: php; title: Custom Code; notranslate">
function sdac_remove_from_feed( $query ) {
	if ( $query-&amp;gt;is_feed ) {
		$query-&amp;gt;set( 'cat',-1 );
	}
        return $query;
}
add_filter( 'pre_get_posts','sdac_remove_from_feed' );
</pre><p>The code above will exclude all posts that are in the category with ID 1 from your feed.  If you wanted to exclude everything from the search results &#8211; you would change one line:<br
/> $query-&gt;is_feed to $query-&gt;is_search</p><p>If you wanted to only show items from the category with ID 1 &#8211; you would just need to remove the &#8220;-&#8221; before the category number.</p><p><strong>Note:</strong> You can include/exclude items tagged, etc by changing the &#8216;cat&#8217; to whatever else you would normally use in the query.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2010/06/16/include-or-exclude-category-for-rss-feed-or-search/feed/</wfw:commentRss> <slash:comments>16</slash:comments> </item> <item><title>Neat and Useful wp-config Settings</title><link>http://www.sandboxdev.com/2010/03/17/neat-wp-config-settings/</link> <comments>http://www.sandboxdev.com/2010/03/17/neat-wp-config-settings/#comments</comments> <pubDate>Wed, 17 Mar 2010 15:33:41 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Codex]]></category> <category><![CDATA[settings]]></category> <category><![CDATA[wp-config]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=799</guid> <description><![CDATA[There are a ton of great options available for you to put into your wp-config.php file which can help your site run smoother, give you that extra customization you wanted without the use of plugins, and aid in development and debugging. Here are some highlights that can help save you time and headaches by adding [...]]]></description> <content:encoded><![CDATA[<p>There are a ton of great options available for you to put into your wp-config.php file which can help your site run smoother, give you that extra customization you wanted without the use of plugins, and aid in development and debugging.</p><p><strong>Here are some highlights that can help save you time and headaches by adding the following to your wp-config.php file:</strong></p><h3>Help for the Average User</h3><ul><li><strong>Change the Autosave Interval:</strong> define(&#8216;AUTOSAVE_INTERVAL&#8217;, 30 ); (30 = 30 seconds)<li><li><strong>Disable Post Revisions:</strong> define(&#8216;WP_POST_REVISIONS&#8217;, false );<li><li><strong>Modify Empty Trash Time:</strong> define(&#8216;EMPTY_TRASH_DAYS&#8217;, 7 ); (7 = 7 days)<li><li><strong>Auto Optimize Your Database:</strong> define(&#8216;WP_ALLOW_REPAIR&#8217;, true);<li><li><strong>Enable the Cache:</strong>define(&#8216;WP_CACHE&#8217;, true);<li><li><strong>Define Maximum # of Revisions:</strong>define(&#8216;WP_POST_REVISIONS&#8217;, 5);<li></ul><h3>Help for Developers</h3><ul><li><strong>Output Errors:</strong>define(&#8216;WP_DEBUG&#8217;, true);<li><li><strong>Save Queries for Analysis:</strong>define(&#8216;SAVEQUERIES&#8217;, true);<li><li><strong>Define WP Site URL (override settings):</strong>define(&#8216;WP_SITEURL&#8217;, &#8216;http://&#8217; . $_SERVER['SERVER_NAME'] . &#8216;/path/to/wordpress&#8217;); &#8211; great for moving sites from one host to another when the actual domain name is not yet available<li><li><strong>Define WP Home (override settings):</strong>define(&#8216;WP_HOME&#8217;,    &#8216;http://&#8217; . $_SERVER['HTTP_HOST'] . &#8216;/path/to/wordpress&#8217;); &#8211; great for moving sites from one host to another when the actual domain name is not yet available<li></ul><p>Full documentation is available: <a
href="http://codex.wordpress.org/Editing_wp-config.php" target="_blank">http://codex.wordpress.org/Editing_wp-config.php</a></p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2010/03/17/neat-wp-config-settings/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>HOWTO: Add a Custom Comment Class to WordPress</title><link>http://www.sandboxdev.com/2009/11/30/howto-add-a-custom-comment-class-to-wordpress/</link> <comments>http://www.sandboxdev.com/2009/11/30/howto-add-a-custom-comment-class-to-wordpress/#comments</comments> <pubDate>Mon, 30 Nov 2009 17:03:20 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[SDAC Blog]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress Logic]]></category> <category><![CDATA[comment_class]]></category> <category><![CDATA[WordPress functions]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=782</guid> <description><![CDATA[Ever need to add your own class to your WordPress comment template but not sure how because of the function comment_class that controls the classes? Check out the function comment_class and you will see adding your own custom classes very easily. Allow this sounds pretty basic &#8211; it is a lifesaver for doing a lot [...]]]></description> <content:encoded><![CDATA[<p>Ever need to add your own class to your WordPress comment template but not sure how because of the function comment_class that controls the classes?  Check out the function <a
href="http://codex.wordpress.org/Template_Tags/comment_class" target="_blank">comment_class</a> and you will see adding your own custom classes very easily.</p><pre class="brush: php; title: Custom Code; notranslate">
</pre><p>Allow this sounds pretty basic &#8211; it is a lifesaver for doing a lot of customizations.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2009/11/30/howto-add-a-custom-comment-class-to-wordpress/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>WordPress: Keep Up to Date &#8211; No Excuses</title><link>http://www.sandboxdev.com/2009/09/08/wordpress-keep-up-to-date-no-excuses/</link> <comments>http://www.sandboxdev.com/2009/09/08/wordpress-keep-up-to-date-no-excuses/#comments</comments> <pubDate>Tue, 08 Sep 2009 15:08:15 +0000</pubDate> <dc:creator>Jennifer Zelazny</dc:creator> <category><![CDATA[HOWTOs]]></category> <category><![CDATA[WordPress Troubleshooting]]></category> <category><![CDATA[WordPress Updates]]></category> <category><![CDATA[Security Update]]></category> <category><![CDATA[WordPress]]></category> <guid
isPermaLink="false">http://www.sandboxdev.com/?p=766</guid> <description><![CDATA[Over the past few days, there has been a lot of buzz going around about keeping WordPress up to date because of a specific worm going around that is causing havoc for out of date WordPress versions. The worm creates a user, hides it from the user list, and then inserts all kinds of junk [...]]]></description> <content:encoded><![CDATA[<p>Over the past few days, there has been a lot of buzz going around about keeping WordPress up to date because of a specific worm going around that is causing havoc for out of date WordPress versions. The worm creates a user, hides it from the user list, and then inserts all kinds of junk into your posts.</p><p>There are multiple ways to easily find out when WordPress has been updated.</p><p>Since everyone who uses WordPress should stay on top of these updates, here are a few ideas on how to find out when a new version has been released:</p><ol><li>Pay attention the the &#8220;<a
href="http://codex.wordpress.org/Upgrading_WordPress" target="_blank">Upgrade Now</a>&#8221; notice when you log into WordPress.</li><li>Get notified by email with the <a
href="http://wordpress.org/extend/plugins/upgrade-notification-by-email/" target="_blank">Upgrade Notification by Email plugin</a></li><li>Read regularly/subscribe to <a
href="http://wordpress.org/development/" target="_blank">the WordPress blog</a></li><li>Read regulary/subscribe to <a
href="http://www.sandboxdev.com/blog/" target="_blank">this blog</a></li></ol><p>Updating is quick and easy &#8211; and should always be done <strong>after</strong> you have a database backup.  Database backups are quick and easy as well with <a
href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">WP-DB-Backup plugin</a>.</p><p>Not really sure if you want to do the upgrade yourself? We would be happy to do it for you &#8211; <a
href="/contact-us/">just contact us</a>.</p> <script type="text/javascript">sdac_post_slideshows.push({fx: 'fade', timeout: 0, speed: 1000, pause: 0,})</script>]]></content:encoded> <wfw:commentRss>http://www.sandboxdev.com/2009/09/08/wordpress-keep-up-to-date-no-excuses/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
