<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Flutter: Basic Usage</title>
	<atom:link href="http://www.doc4design.com/articles/flutter-basic-usage/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.doc4design.com/articles/flutter-basic-usage/</link>
	<description>Advertising and Marketing agency located in Northwest Arkansas providing easily attainable, creative solutions for any outlet in any stage of growth.</description>
	<lastBuildDate>Tue, 09 Mar 2010 22:42:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: uberVU - social comments</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-371</link>
		<dc:creator>uberVU - social comments</dc:creator>
		<pubDate>Fri, 12 Feb 2010 19:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-371</guid>
		<description>Social comments and analytics for this post...

This post was mentioned on Twitter by doc4design: Tutorial on Flutter: Basic Usage: http://bit.ly/1HnEzp...</description>
		<content:encoded><![CDATA[<p>Social comments and analytics for this post&#8230;</p>
<p>This post was mentioned on Twitter by doc4design: Tutorial on Flutter: Basic Usage: <a href="http://bit.ly/1HnEzp.." rel="nofollow">http://bit.ly/1HnEzp..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Descubrimientos del 12 Febrero 2010 &#124; Blog de unique3w</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-370</link>
		<dc:creator>Descubrimientos del 12 Febrero 2010 &#124; Blog de unique3w</dc:creator>
		<pubDate>Fri, 12 Feb 2010 17:19:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-370</guid>
		<description>[...] Utilización básica del plugin CMS para wordpress Flutter. &#8211; Flutter: Basic Usage &#124; Doc4 [...]</description>
		<content:encoded><![CDATA[<p>[...] Utilización básica del plugin CMS para wordpress Flutter. &#8211; Flutter: Basic Usage | Doc4 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miz</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-289</link>
		<dc:creator>Miz</dc:creator>
		<pubDate>Tue, 12 Jan 2010 15:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-289</guid>
		<description>Hey Adam.  Did you find a solution to using the cuntion filter where command?  I also want to query posts between two different dates (which are custom fields).  I can get it to query posts after today&#039;s date, but I also want to limit how far out it goes. Any luck?

Basically got this code from WordPress

= &#039;&quot; . date(&#039;Y-m-d&#039;) . &quot;&#039;&quot; . &quot; AND post_date  

I want to change post_date to my custom field?  How would I go about doing that. Tried this:

= &#039;&quot; . date(&#039;Y-m-d&#039;) . &quot;&#039;&quot; . &quot; AND . $end_date2 .  

Any help will be appreciated much!!!</description>
		<content:encoded><![CDATA[<p>Hey Adam.  Did you find a solution to using the cuntion filter where command?  I also want to query posts between two different dates (which are custom fields).  I can get it to query posts after today&#8217;s date, but I also want to limit how far out it goes. Any luck?</p>
<p>Basically got this code from WordPress</p>
<p>= &#8216;&#8221; . date(&#8216;Y-m-d&#8217;) . &#8220;&#8216;&#8221; . &#8221; AND post_date  </p>
<p>I want to change post_date to my custom field?  How would I go about doing that. Tried this:</p>
<p>= &#8216;&#8221; . date(&#8216;Y-m-d&#8217;) . &#8220;&#8216;&#8221; . &#8221; AND . $end_date2 .  </p>
<p>Any help will be appreciated much!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-281</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Sun, 10 Jan 2010 14:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-281</guid>
		<description>@anneclaire - try disabling your Wordpress Stats plugin, Ive found that fixes the issue for me.</description>
		<content:encoded><![CDATA[<p>@anneclaire &#8211; try disabling your Wordpress Stats plugin, Ive found that fixes the issue for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doc4</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-277</link>
		<dc:creator>Doc4</dc:creator>
		<pubDate>Thu, 07 Jan 2010 20:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-277</guid>
		<description>Adam, 

Just to be clear we are talking about posts that are current, not future posts, correct?

It might be easier to use a function such as:
&lt;code&gt;add_filter(&#039;the_posts&#039;, &#039;show_all_future_posts&#039;);
function show_all_future_posts($posts)
{
   global $wp_query, $wpdb;

   if(is_single() &amp;&amp; $wp_query-&gt;post_count == 0)
   {
      $posts = $wpdb-&gt;get_results($wp_query-&gt;request);
   }
   return $posts;
}
?&gt;&lt;/code&gt;

Be sure to set the postdates to the occurring date in the future and then display them in this manner:

&lt;code&gt;
&lt;?php $my_query = new WP_Query(&#039;cat=1&amp;post_status=future&amp;order=ASC&#039;); ?&gt;

  &lt;?php if ($my_query-&gt;have_posts()) : while ($my_query-&gt;have_posts()) :
            $my_query-&gt;the_post();
            $do_not_duplicate = $post-&gt;ID; ?&gt;
  
  &lt;!-- Do Something Here --&gt;

  &lt;?php endwhile; else: ?&gt;
  &lt;?php endif; ?&gt;&lt;/code&gt;

Where category 1 is specific to the production posts.</description>
		<content:encoded><![CDATA[<p>Adam, </p>
<p>Just to be clear we are talking about posts that are current, not future posts, correct?</p>
<p>It might be easier to use a function such as:<br />
<pre><code>add_filter(&#039;the_posts&#039;, &#039;show_all_future_posts&#039;);
function show_all_future_posts($posts)
{
&nbsp;&nbsp; global $wp_query, $wpdb;

&nbsp;&nbsp; if(is_single() &amp;&amp; $wp_query-&gt;post_count == 0)
&nbsp;&nbsp; {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$posts = $wpdb-&gt;get_results($wp_query-&gt;request);
&nbsp;&nbsp; }
&nbsp;&nbsp; return $posts;
}
?&gt;</code></pre></p>
<p>Be sure to set the postdates to the occurring date in the future and then display them in this manner:</p>
<p><pre><code>
&lt;?php $my_query = new WP_Query(&#039;cat=1&amp;post_status=future&amp;order=ASC&#039;); ?&gt;

&nbsp;&nbsp;&lt;?php if ($my_query-&gt;have_posts()) : while ($my_query-&gt;have_posts()) :
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$my_query-&gt;the_post();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$do_not_duplicate = $post-&gt;ID; ?&gt;
&nbsp;&nbsp;
&nbsp;&nbsp;&lt;!-- Do Something Here --&gt;

&nbsp;&nbsp;&lt;?php endwhile; else: ?&gt;
&nbsp;&nbsp;&lt;?php endif; ?&gt;</code></pre></p>
<p>Where category 1 is specific to the production posts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-276</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 07 Jan 2010 17:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-276</guid>
		<description>Hi I&#039;m having a little trouble trying to find the answer to this question ..

I am trying to show &quot;Upcoming Productions&quot; on a homepage of a website, I am using query_posts to output all the productions but I want to only show productions that are &quot;Upcoming&quot; i.e. they have not already passed.  

I have included a flutter date field called prodn_date which i have customised slightly so it only shows the month and year e.g. JAN 2010 and I the query_posts string to only show posts where this fields date has not passed.

Here is my attempt .. any help would be greatly appreciated

&lt;code&gt;
&lt;?php
  function filter_where($where = &#039;&#039;) {
    //posts where prodn_date has not passed
    $where .= &quot; AND &#039;&quot; . prodn_date . &quot;&#039; &lt; &#039;&quot; . date(&#039;M Y&#039;) . &quot;&#039;&quot;;
    return $where;
  }
add_filter(&#039;posts_where&#039;, &#039;filter_where&#039;);
query_posts($query_string.&#039;orderby=ID&amp;order=DESC&amp;cat=7&amp;limit=5&#039;);
?&gt;
&lt;/code&gt;

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi I&#8217;m having a little trouble trying to find the answer to this question ..</p>
<p>I am trying to show &#8220;Upcoming Productions&#8221; on a homepage of a website, I am using query_posts to output all the productions but I want to only show productions that are &#8220;Upcoming&#8221; i.e. they have not already passed.  </p>
<p>I have included a flutter date field called prodn_date which i have customised slightly so it only shows the month and year e.g. JAN 2010 and I the query_posts string to only show posts where this fields date has not passed.</p>
<p>Here is my attempt .. any help would be greatly appreciated</p>
<p><pre><code>
&lt;?php
&nbsp;&nbsp;function filter_where($where = &#039;&#039;) {
&nbsp;&nbsp;&nbsp;&nbsp;//posts where prodn_date has not passed
&nbsp;&nbsp;&nbsp;&nbsp;$where .= &quot; AND &#039;&quot; . prodn_date . &quot;&#039; &lt; &#039;&quot; . date(&#039;M Y&#039;) . &quot;&#039;&quot;;
&nbsp;&nbsp;&nbsp;&nbsp;return $where;
&nbsp;&nbsp;}
add_filter(&#039;posts_where&#039;, &#039;filter_where&#039;);
query_posts($query_string.&#039;orderby=ID&amp;order=DESC&amp;cat=7&amp;limit=5&#039;);
?&gt;
</code></pre></p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doc4</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-234</link>
		<dc:creator>Doc4</dc:creator>
		<pubDate>Sun, 29 Nov 2009 01:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-234</guid>
		<description>Shane, 

This question is better suited for the Flutter forums. Please post your question here: http://flutter.freshout.us/support/</description>
		<content:encoded><![CDATA[<p>Shane, </p>
<p>This question is better suited for the Flutter forums. Please post your question here: <a href="http://flutter.freshout.us/support/" rel="nofollow">http://flutter.freshout.us/support/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-233</link>
		<dc:creator>Shane</dc:creator>
		<pubDate>Wed, 25 Nov 2009 18:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-233</guid>
		<description>I&#039;ve got Flutter set up on a WP install on an IIS server. For fields of content type image, when editing posts the thumbnail does not appear, instead showing an error message like this:
phpThumb() v1.7.....
&quot;d:Inetpubclientnameprojects/wp-contentfiles_flutter1259180662DSC_8398.jpg&quot; does not exist
where the actual path should look like this:
d:/Inetpub/clientname/projects/wp-content/files_flutter/1259180662DSC_8398.jpg
Additionally, when viewing the output of an image, the source path experiences the same issue with regard to missing forward slashes.
http://clientname.com/projects/wp-contentfiles_flutter1259180662DSC_8398.jpg

Is there somewhere I need to change directory separators for IIS servers?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got Flutter set up on a WP install on an IIS server. For fields of content type image, when editing posts the thumbnail does not appear, instead showing an error message like this:<br />
phpThumb() v1.7&#8230;..<br />
&#8220;d:Inetpubclientnameprojects/wp-contentfiles_flutter1259180662DSC_8398.jpg&#8221; does not exist<br />
where the actual path should look like this:<br />
d:/Inetpub/clientname/projects/wp-content/files_flutter/1259180662DSC_8398.jpg<br />
Additionally, when viewing the output of an image, the source path experiences the same issue with regard to missing forward slashes.<br />
<a href="http://clientname.com/projects/wp-contentfiles_flutter1259180662DSC_8398.jpg" rel="nofollow">http://clientname.com/projects/wp-contentfiles_flutter1259180662DSC_8398.jpg</a></p>
<p>Is there somewhere I need to change directory separators for IIS servers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-229</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Mon, 23 Nov 2009 15:37:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-229</guid>
		<description>Brilliant. Thanks so much for the helpful answer Doc4. Much appreciated.</description>
		<content:encoded><![CDATA[<p>Brilliant. Thanks so much for the helpful answer Doc4. Much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doc4</title>
		<link>http://www.doc4design.com/articles/flutter-basic-usage/comment-page-1/#comment-228</link>
		<dc:creator>Doc4</dc:creator>
		<pubDate>Mon, 23 Nov 2009 14:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/?p=1293#comment-228</guid>
		<description>Richard, 

There is no difference except how they are typed. The actual function provided by WordPress is:

&lt;code&gt;&lt;?php $meta_values = get_post_meta($post_id, $key, $single); ?&gt;&lt;/code&gt;

Where &lt;code&gt;$single&lt;/code&gt; can be set to &lt;code&gt;true&lt;/code&gt; or &lt;code&gt;false&lt;/code&gt;.  All that I am doing is stating the &lt;code&gt;$string&lt;/code&gt; is equal to &lt;code&gt;true&lt;/code&gt; but WordPress does not require this. To answer your other question: this is not specific to Flutter.</description>
		<content:encoded><![CDATA[<p>Richard, </p>
<p>There is no difference except how they are typed. The actual function provided by WordPress is:</p>
<p><code>&lt;?php $meta_values = get_post_meta($post_id, $key, $single); ?&gt;</code></p>
<p>Where <code>$single</code> can be set to <code>true</code> or <code>false</code>.  All that I am doing is stating the <code>$string</code> is equal to <code>true</code> but WordPress does not require this. To answer your other question: this is not specific to Flutter.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
