<?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: WordPress Custom Fields</title>
	<atom:link href="http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/</link>
	<description>Blog Themes, Blog Design &#38; Daily Blog Tips</description>
	<lastBuildDate>Wed, 08 Feb 2012 15:16:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Sarah</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-274100</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Mon, 03 Nov 2008 08:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-274100</guid>
		<description>Hi Mario, to allow anyone to submit a post but doesn&#039;t go live until you authorise it doesn&#039;t need a custom field. 
 
Allow people to register on your site and you can set the default user role as subscriber or contributor. If someone is a contributor they can write a post, edit that post but it will not go live until you or an Editor allows it (I think Editors can, but don&#039;t quote me on that!). 
 
I&#039;m not sure what you mean about the excerpt custom field, or do you just mean the post excerpt. It&#039;s handy at times but I&#039;ve used it more on CMSs than blogs. </description>
		<content:encoded><![CDATA[<p>Hi Mario, to allow anyone to submit a post but doesn&#39;t go live until you authorise it doesn&#39;t need a custom field.</p>
<p>Allow people to register on your site and you can set the default user role as subscriber or contributor. If someone is a contributor they can write a post, edit that post but it will not go live until you or an Editor allows it (I think Editors can, but don&#39;t quote me on that!).</p>
<p>I&#39;m not sure what you mean about the excerpt custom field, or do you just mean the post excerpt. It&#39;s handy at times but I&#39;ve used it more on CMSs than blogs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario Andrade</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-274058</link>
		<dc:creator>Mario Andrade</dc:creator>
		<pubDate>Mon, 03 Nov 2008 04:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-274058</guid>
		<description>Most people also don&#039;t know the real power of using the excerpt custom field on the wordpress posting page. I wrote something about it but it&#039;s in Portuguese. 
 
About the custom fields I mean any visitor being able to send a post and it stays in moderation until an admin approves it. 
I&#039;ve been using Mini Forms plugin for that but would sure prefer to be able to do it myself. 
 
I reckon that I have to create a default user to allow to create content but don&#039;t have a clue on how I would go from there. </description>
		<content:encoded><![CDATA[<p>Most people also don&#39;t know the real power of using the excerpt custom field on the wordpress posting page. I wrote something about it but it&#39;s in Portuguese.</p>
<p>About the custom fields I mean any visitor being able to send a post and it stays in moderation until an admin approves it.</p>
<p>I&#39;ve been using Mini Forms plugin for that but would sure prefer to be able to do it myself.</p>
<p>I reckon that I have to create a default user to allow to create content but don&#39;t have a clue on how I would go from there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarah</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-274041</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Mon, 03 Nov 2008 03:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-274041</guid>
		<description>Mike, glad to know my post cleared it all up for you  :???:  
 
Simply put, a custom field is a bit like having a second (and third if you wish) content box for that post. One of my examples of use was a meta description. Forget your SEO plugins for a moment because I don&#039;t think you need them for blog posts. 
 
When you&#039;re creating a post you can set the post title and the post content. So if you created a custom field for the meta description, then in your template you could have the meta description field in the header.php file retrieving this meta description ie. 
 
&lt;code&gt;&lt;meta name=&quot;description&quot; value=&quot;&lt;?php echo get_post_meta($post-&gt;ID, &#039;meta_desc&#039;, TRUE); ?&gt;&quot; /&gt;&lt;/code&gt; 
 
Then when you write a post you also go to the custom field area, in the key select list you&#039;ll see meta_desc (once you&#039;ve set it once it will always be in the select list) and you type your description in the text area box. It&#039;s only assigned to that specific post then. 
 
If that still doesn&#039;t make sense then I recommend you actually follow my post above and try it out for yourself. Then you should understand how it works. </description>
		<content:encoded><![CDATA[<p>Mike, glad to know my post cleared it all up for you  <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_confused.gif' alt=':???:' class='wp-smiley' />  </p>
<p>Simply put, a custom field is a bit like having a second (and third if you wish) content box for that post. One of my examples of use was a meta description. Forget your SEO plugins for a moment because I don&#39;t think you need them for blog posts.</p>
<p>When you&#39;re creating a post you can set the post title and the post content. So if you created a custom field for the meta description, then in your template you could have the meta description field in the header.php file retrieving this meta description ie.</p>
<p>&lt;code&gt;&lt;meta name=&quot;description&quot; value=&quot;&lt;?php echo get_post_meta($post-&gt;ID, &#39;meta_desc&#39;, TRUE); ?&gt;&quot; /&gt;&lt;/code&gt;</p>
<p>Then when you write a post you also go to the custom field area, in the key select list you&#39;ll see meta_desc (once you&#39;ve set it once it will always be in the select list) and you type your description in the text area box. It&#39;s only assigned to that specific post then.</p>
<p>If that still doesn&#39;t make sense then I recommend you actually follow my post above and try it out for yourself. Then you should understand how it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarah</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-273823</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Sun, 02 Nov 2008 20:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-273823</guid>
		<description>Mario, I&#039;ve never looked into that no. I assume you mean any visitor to your site? or do you mean any user with a login account on your site?</description>
		<content:encoded><![CDATA[<p>Mario, I&#8217;ve never looked into that no. I assume you mean any visitor to your site? or do you mean any user with a login account on your site?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Huang</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-273901</link>
		<dc:creator>Mike Huang</dc:creator>
		<pubDate>Sun, 02 Nov 2008 18:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-273901</guid>
		<description>I had no clue what this was ever suppose to be used for and I still don&#039;t know :( 
 
-Mike </description>
		<content:encoded><![CDATA[<p>I had no clue what this was ever suppose to be used for and I still don&#39;t know <img src='http://www.bloggingtips.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>-Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adsense Channels Wordpress &#124; John's Jottings</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-273782</link>
		<dc:creator>Adsense Channels Wordpress &#124; John's Jottings</dc:creator>
		<pubDate>Sun, 02 Nov 2008 17:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-273782</guid>
		<description>[...] Sarah&#8217;s post this morning on Wordpress Custom Fields got me thinking about how I use custom fields, and in particular how much easier they are to use in [...]</description>
		<content:encoded><![CDATA[<p>[...] Sarah&#8217;s post this morning on WordPress Custom Fields got me thinking about how I use custom fields, and in particular how much easier they are to use in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clare</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-273776</link>
		<dc:creator>Clare</dc:creator>
		<pubDate>Sun, 02 Nov 2008 16:57:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-273776</guid>
		<description>I think this is probably one of the most under-used functions of wordpress. I&#039;ve had a few themes in the past that have made good use of it, usually magazine style themes.</description>
		<content:encoded><![CDATA[<p>I think this is probably one of the most under-used functions of wordpress. I&#8217;ve had a few themes in the past that have made good use of it, usually magazine style themes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario Andrade</title>
		<link>http://www.bloggingtips.com/2008/11/02/wordpress-custom-fields/#comment-273780</link>
		<dc:creator>Mario Andrade</dc:creator>
		<pubDate>Sun, 02 Nov 2008 12:16:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.bloggingtips.com/?p=3927#comment-273780</guid>
		<description>Nice tutorial, do you know how to use custom fields to allow any user write content? </description>
		<content:encoded><![CDATA[<p>Nice tutorial, do you know how to use custom fields to allow any user write content?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

