<?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: Get Custom Field Values v2.5</title>
	<atom:link href="http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/feed/" rel="self" type="application/rss+xml" />
	<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/</link>
	<description>pro-gram-mer: n. a person who converts coffee into code</description>
	<pubDate>Wed, 07 Jan 2009 21:29:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Paul</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-425201</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 31 Aug 2008 22:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-425201</guid>
		<description>Ugh, forgot to change the 'src' for my images directory, no biggie, I was just trying to make it easier to follow by other readers.</description>
		<content:encoded><![CDATA[<p>Ugh, forgot to change the &#8217;src&#8217; for my images directory, no biggie, I was just trying to make it easier to follow by other readers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-417728</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 08 Jul 2008 04:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-417728</guid>
		<description>Wow. Thank you sooo much for this plugin!  You just helped me do something with my blog that would have been really difficult without this plugin.  Thank you SO much for all of your hard work.  You're a Godsend!</description>
		<content:encoded><![CDATA[<p>Wow. Thank you sooo much for this plugin!  You just helped me do something with my blog that would have been really difficult without this plugin.  Thank you SO much for all of your hard work.  You&#8217;re a Godsend!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sky</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-405313</link>
		<dc:creator>Michael Sky</dc:creator>
		<pubDate>Fri, 09 May 2008 19:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-405313</guid>
		<description>Hi Scott,

Just paypalled you some appreciation. I have one other question. Here's the basic query I'm using:

&lt;code&gt; query_posts ('category=7&#038;numberposts=150&#038;orderby=title&#038;order=ASC'); &lt;/code&gt;

Is there any way to randomize the order?

thanks</description>
		<content:encoded><![CDATA[<p>Hi Scott,</p>
<p>Just paypalled you some appreciation. I have one other question. Here&#8217;s the basic query I&#8217;m using:</p>
<p><code> query_posts (&#039;category=7&amp;numberposts=150&amp;orderby=title&amp;order=ASC&#039;); </code></p>
<p>Is there any way to randomize the order?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sky</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-405306</link>
		<dc:creator>Michael Sky</dc:creator>
		<pubDate>Fri, 09 May 2008 16:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-405306</guid>
		<description>Worked perfect. And I was able to use this to figure out how to also make a "Website" field, for web URLs, also work. Thanks much......</description>
		<content:encoded><![CDATA[<p>Worked perfect. And I was able to use this to figure out how to also make a &#8220;Website&#8221; field, for web URLs, also work. Thanks much&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-405301</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 09 May 2008 15:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-405301</guid>
		<description>&lt;strong&gt;Michael:&lt;/strong&gt;  It looks like you want to display the "Email" custom field twice, right?  Once as the mailto: value and once as the text being linked?  If so, you'll have to go about things in a slightly different manner.  There are a few ways to approach it, but this is what I'd do:

&lt;code&gt;&lt;?php
  $email = c2c_get_custom('Email');
  if ($email) {
    echo "&lt;li class='address'&gt;&lt;a href='mailto:$email'&gt;$email&lt;/a&gt;&lt;/li&gt;";
  }
?&gt;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><strong>Michael:</strong>  It looks like you want to display the &#8220;Email&#8221; custom field twice, right?  Once as the mailto: value and once as the text being linked?  If so, you&#8217;ll have to go about things in a slightly different manner.  There are a few ways to approach it, but this is what I&#8217;d do:</p>
<p><pre><code>&lt;?php
  $email = c2c_get_custom(&#039;Email&#039;);
  if ($email) {
    echo &quot;&lt;li class=&#039;address&#039;&gt;&lt;a href=&#039;mailto:$email&#039;&gt;$email&lt;/a&gt;&lt;/li&gt;&quot;;
  }
?&gt;
</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sky</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-405299</link>
		<dc:creator>Michael Sky</dc:creator>
		<pubDate>Fri, 09 May 2008 15:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-405299</guid>
		<description>Sorry, missed the part about wrapping code. Here it is:

&lt;code&gt;&lt;?php echo c2c_get_custom('Email','&lt;li class="address"&gt;&lt;a href="mailto:Email"&gt;','&lt;/a&gt;&lt;/li&gt;'); ?&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Sorry, missed the part about wrapping code. Here it is:</p>
<p><code>&lt;?php echo c2c_get_custom(&#039;Email&#039;,&#039;&lt;li class=&quot;address&quot;&gt;&lt;a href=&quot;mailto:Email&quot;&gt;&#039;,&#039;&lt;/a&gt;&lt;/li&gt;&#039;); ?&gt;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sky</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-405298</link>
		<dc:creator>Michael Sky</dc:creator>
		<pubDate>Fri, 09 May 2008 15:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-405298</guid>
		<description>Hi Scott, love the plugin. Having one problem. I have the custom field "Email" to display email addresses. Using the below code it displays right as a  clickable link, but though it opens a new email it's not inserting the email address in the "to" field. 

&#60;?php echo c2c_get_custom('Email','&lt;a href="mailto:Email" rel="nofollow"&gt;','&lt;/a&gt;'); ?&#62;

It just prints "Email" in the "to" field instead of the actual address.

thanks</description>
		<content:encoded><![CDATA[<p>Hi Scott, love the plugin. Having one problem. I have the custom field &#8220;Email&#8221; to display email addresses. Using the below code it displays right as a  clickable link, but though it opens a new email it&#8217;s not inserting the email address in the &#8220;to&#8221; field. </p>
<p>&lt;?php echo c2c_get_custom(&#8217;Email&#8217;,&#8217;<a href="mailto:Email" rel="nofollow">&#8216;,&#8217;</a>&#8216;); ?&gt;</p>
<p>It just prints &#8220;Email&#8221; in the &#8220;to&#8221; field instead of the actual address.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Casey</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-405100</link>
		<dc:creator>Casey</dc:creator>
		<pubDate>Thu, 08 May 2008 02:15:41 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-405100</guid>
		<description>oh, boy, oh boy... I'm so excited! this is by far one of my favorite plugins and I am SO happy to see an update. Thanks!!!</description>
		<content:encoded><![CDATA[<p>oh, boy, oh boy&#8230; I&#8217;m so excited! this is by far one of my favorite plugins and I am SO happy to see an update. Thanks!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-403808</link>
		<dc:creator>Bart</dc:creator>
		<pubDate>Tue, 06 May 2008 09:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-403808</guid>
		<description>Sorry, the error was caused by the database. I imported the posts (also existing posts). But this import also made new records in the wp_postmeta table with a postid 0.

After running this query the problem was fixed:
DELETE FROM wp_postmeta WHERE post_id = 0</description>
		<content:encoded><![CDATA[<p>Sorry, the error was caused by the database. I imported the posts (also existing posts). But this import also made new records in the wp_postmeta table with a postid 0.</p>
<p>After running this query the problem was fixed:<br />
DELETE FROM wp_postmeta WHERE post_id = 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart</title>
		<link>http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/comment-page-1/#comment-403725</link>
		<dc:creator>Bart</dc:creator>
		<pubDate>Tue, 06 May 2008 08:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/archives/2008/04/01/get-custom-field-values-v25/#comment-403725</guid>
		<description>since i installed wp 2.5.1 i can't write new posts because the c2c get custum script causes an unresponsive error. Is this a known issue?</description>
		<content:encoded><![CDATA[<p>since i installed wp 2.5.1 i can&#8217;t write new posts because the c2c get custum script causes an unresponsive error. Is this a known issue?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
