<?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: Custom Write Panels for WordPress 3.0</title>
	<atom:link href="http://brassblogs.com/cms-platforms/wordpress/custom-write-panels-for-wordpress-3-0/feed" rel="self" type="application/rss+xml" />
	<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0</link>
	<description>Brass Blogs: Web Design &#38; Development</description>
	<lastBuildDate>Fri, 27 Apr 2012 18:20:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Chris</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-467</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 04 Oct 2010 02:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-467</guid>
		<description>Hi Shelly, great tutorial, but I’m just having some trouble and I’m sure it’s obvious, but going right over my head… what i’m looking to do is use a custom checkbox field called “new” in my custom type called portfolio.
everything works so far, i have the custom write panel showing up in the right place and the code echo properly, but still cant figure out how to use it to command two different post templates.

could you take a look at what im trying to do please?

http://www.pastie.org/1197659

thanks a lot your help is much appreciated!</description>
		<content:encoded><![CDATA[<p>Hi Shelly, great tutorial, but I’m just having some trouble and I’m sure it’s obvious, but going right over my head… what i’m looking to do is use a custom checkbox field called “new” in my custom type called portfolio.<br />
everything works so far, i have the custom write panel showing up in the right place and the code echo properly, but still cant figure out how to use it to command two different post templates.</p>
<p>could you take a look at what im trying to do please?</p>
<p><a href="http://www.pastie.org/1197659" rel="nofollow">http://www.pastie.org/1197659</a></p>
<p>thanks a lot your help is much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-465</link>
		<dc:creator>john</dc:creator>
		<pubDate>Sun, 03 Oct 2010 18:10:28 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-465</guid>
		<description>greetings shelly,

thanks so much for the tutorial. i have a feeling i&#039;ll be implementing it regularly.

looks to me like it&#039;s missing a closing div tag? when i used the code as provided, i ended up with some of the write panels INSIDE the new custom panel. 
http://cl.ly/4ab5e34964f661977de2 

when i added another closing div tag just after the final $output variable, it looks better. http://cl.ly/b12dd66bcd1ed8c99eff 

was it an oversight? or maybe i implemented the code incorrectly in the first place.  

thx again for your work. much appreciated.</description>
		<content:encoded><![CDATA[<p>greetings shelly,</p>
<p>thanks so much for the tutorial. i have a feeling i&#8217;ll be implementing it regularly.</p>
<p>looks to me like it&#8217;s missing a closing div tag? when i used the code as provided, i ended up with some of the write panels INSIDE the new custom panel.<br />
<a href="http://cl.ly/4ab5e34964f661977de2" rel="nofollow">http://cl.ly/4ab5e34964f661977de2</a> </p>
<p>when i added another closing div tag just after the final $output variable, it looks better. <a href="http://cl.ly/b12dd66bcd1ed8c99eff" rel="nofollow">http://cl.ly/b12dd66bcd1ed8c99eff</a> </p>
<p>was it an oversight? or maybe i implemented the code incorrectly in the first place.  </p>
<p>thx again for your work. much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelly</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-464</link>
		<dc:creator>Shelly</dc:creator>
		<pubDate>Sun, 26 Sep 2010 17:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-464</guid>
		<description>Hi Steve,

Well, there&#039;s really not much else I could tell you.  if I did a write-up of how to add a second panel, it would basically look like this one, almost exactly.  

You just have to rename your variables and functions so they aren&#039;t duplicated.  usually, I just add a number next to everything.  So if my first variable is &quot;$key&quot;, then the second section will be &quot;$key1&quot;.  All references to &quot;$key&quot; in my copy should be changed to &quot;$key1&quot;.  Same for the functions, and calls to those functions.  If I have &quot;function display_meta_box()&quot;, then in my copy of the whole thing, I change it to &quot;function display_meta_box1()&quot;, and I have to make sure the function calls reflect that change.  (i.e. in the &quot;add_meta_box&quot; thing, you have to change &quot;display_meta_box&quot; to &quot;display_meta_box1&quot;so it pulls in the correct fields).  You also have to call them in at the end to &quot;activate&quot; them - the &quot;add_action&quot; areas.  You have the &quot;add_action(&#039;admin_menu&#039;, &#039;create_meta_box&#039;)&quot; AND &quot;add_action(&#039;admin_menu&#039;, &#039;create_meta_box1&#039;)&quot; .

other than just making sure you&#039;re adding numbers (or some other form of defining what you&#039;re doing) and making sure you&#039;re calling them in by changing the information, its pretty much exactly the same as above.</description>
		<content:encoded><![CDATA[<p>Hi Steve,</p>
<p>Well, there&#8217;s really not much else I could tell you.  if I did a write-up of how to add a second panel, it would basically look like this one, almost exactly.  </p>
<p>You just have to rename your variables and functions so they aren&#8217;t duplicated.  usually, I just add a number next to everything.  So if my first variable is &#8220;$key&#8221;, then the second section will be &#8220;$key1&#8243;.  All references to &#8220;$key&#8221; in my copy should be changed to &#8220;$key1&#8243;.  Same for the functions, and calls to those functions.  If I have &#8220;function display_meta_box()&#8221;, then in my copy of the whole thing, I change it to &#8220;function display_meta_box1()&#8221;, and I have to make sure the function calls reflect that change.  (i.e. in the &#8220;add_meta_box&#8221; thing, you have to change &#8220;display_meta_box&#8221; to &#8220;display_meta_box1&#8243;so it pulls in the correct fields).  You also have to call them in at the end to &#8220;activate&#8221; them &#8211; the &#8220;add_action&#8221; areas.  You have the &#8220;add_action(&#8216;admin_menu&#8217;, &#8216;create_meta_box&#8217;)&#8221; AND &#8220;add_action(&#8216;admin_menu&#8217;, &#8216;create_meta_box1&#8242;)&#8221; .</p>
<p>other than just making sure you&#8217;re adding numbers (or some other form of defining what you&#8217;re doing) and making sure you&#8217;re calling them in by changing the information, its pretty much exactly the same as above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-463</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sun, 26 Sep 2010 14:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-463</guid>
		<description>Hi Shelly,

First off: Thank you very much for going to the trouble of writing this guide; I&#039;ve found it incredibly handy!

I am only having one problem: I&#039;m attempting to incorporate a second custom write panel - as Dyrk mentioned earlier - and am having great difficulty. My knowledge of PHP is quite limited to say the least, and my attempts to implement a second panel has resulted in numerous problems.

Might I humbly request an additional section added to your article detailing the necessary steps to include a second panel please? I&#039;ve renamed each variable and function and ensured that they are behaving as they should do, but I&#039;m at my wits-end.

If you might be able to include the code that we could easily copy/paste then that would be absolutely superb. I do hope this is no trouble. I&#039;m tearing my hair out over here! :)

Thank you for reading my response and I look forward to hearing back from you.

Steve</description>
		<content:encoded><![CDATA[<p>Hi Shelly,</p>
<p>First off: Thank you very much for going to the trouble of writing this guide; I&#8217;ve found it incredibly handy!</p>
<p>I am only having one problem: I&#8217;m attempting to incorporate a second custom write panel &#8211; as Dyrk mentioned earlier &#8211; and am having great difficulty. My knowledge of PHP is quite limited to say the least, and my attempts to implement a second panel has resulted in numerous problems.</p>
<p>Might I humbly request an additional section added to your article detailing the necessary steps to include a second panel please? I&#8217;ve renamed each variable and function and ensured that they are behaving as they should do, but I&#8217;m at my wits-end.</p>
<p>If you might be able to include the code that we could easily copy/paste then that would be absolutely superb. I do hope this is no trouble. I&#8217;m tearing my hair out over here! <img src='http://brassblogs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thank you for reading my response and I look forward to hearing back from you.</p>
<p>Steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelly</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-461</link>
		<dc:creator>Shelly</dc:creator>
		<pubDate>Thu, 23 Sep 2010 15:07:41 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-461</guid>
		<description>Nomad - why would you want to do that? Just as a general thing, it doesn&#039;t really make sense.  but perhaps if you supplied some details as to what you&#039;re trying to accomplish, there would be a solution for you.</description>
		<content:encoded><![CDATA[<p>Nomad &#8211; why would you want to do that? Just as a general thing, it doesn&#8217;t really make sense.  but perhaps if you supplied some details as to what you&#8217;re trying to accomplish, there would be a solution for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nomadone</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-458</link>
		<dc:creator>nomadone</dc:creator>
		<pubDate>Sat, 18 Sep 2010 20:48:22 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-458</guid>
		<description>Hey thanks nice writeup and very helpful the way you&#039;ve explained some of the finer details.

I&#039;m wondering though haven&#039;t found any references anywhere to this is can you set these write panels to show up for only specific pages or specific posts based on something within the page or post like whether the page has a specific custom field already assigned or whether it&#039;s a child of a specific page etc.

Anyone heard of this being done? Possible?</description>
		<content:encoded><![CDATA[<p>Hey thanks nice writeup and very helpful the way you&#8217;ve explained some of the finer details.</p>
<p>I&#8217;m wondering though haven&#8217;t found any references anywhere to this is can you set these write panels to show up for only specific pages or specific posts based on something within the page or post like whether the page has a specific custom field already assigned or whether it&#8217;s a child of a specific page etc.</p>
<p>Anyone heard of this being done? Possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelly</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-441</link>
		<dc:creator>Shelly</dc:creator>
		<pubDate>Tue, 31 Aug 2010 12:29:03 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-441</guid>
		<description>HI Mario,

the tutorial above already places the custom meta box below the editor.  If you want it in the sidebar, you&#039;d change &quot;normal&quot; to &quot;side&quot; in the &quot;add_meta_box&quot; section.

You can read more about it here:

&lt;a href=&quot;http://codex.wordpress.org/Function_Reference/add_meta_box&quot; rel=&quot;nofollow&quot;&gt;Function reference: add_meta_box&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>HI Mario,</p>
<p>the tutorial above already places the custom meta box below the editor.  If you want it in the sidebar, you&#8217;d change &#8220;normal&#8221; to &#8220;side&#8221; in the &#8220;add_meta_box&#8221; section.</p>
<p>You can read more about it here:</p>
<p><a href="http://codex.wordpress.org/Function_Reference/add_meta_box" rel="nofollow">Function reference: add_meta_box</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mario Claro</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-440</link>
		<dc:creator>Mario Claro</dc:creator>
		<pubDate>Tue, 31 Aug 2010 00:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-440</guid>
		<description>Hi, great article

How I can I move the meta box to the middle panel, below the editor, for instance?</description>
		<content:encoded><![CDATA[<p>Hi, great article</p>
<p>How I can I move the meta box to the middle panel, below the editor, for instance?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shelly</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-439</link>
		<dc:creator>Shelly</dc:creator>
		<pubDate>Tue, 24 Aug 2010 12:39:33 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-439</guid>
		<description>HI Luke,

If the &quot;back end bits&quot; are showing up fine (meaning, you&#039;re seeing the fields you&#039;ve crated, and the stuff you put into them is saved like it&#039;s supposed to be) then you&#039;ve done it correctly.  The code doesn&#039;t *display* the stuff, it only creates the extra fields and saves the information.  You have to edit your theme to make it show the items you&#039;ve put into it.  

So without knowing what you&#039;ve put into your theme files, i have no way of troubleshooting the issue.  Sounds like it&#039;s working like it&#039;s supposed to, but you&#039;ve just either used the wrong code in your theme files to display the information, or you haven&#039;t done it yet at all.

At the end of the post above is a little section on how to pull the info out and display it, see how that compares to what you&#039;ve got.</description>
		<content:encoded><![CDATA[<p>HI Luke,</p>
<p>If the &#8220;back end bits&#8221; are showing up fine (meaning, you&#8217;re seeing the fields you&#8217;ve crated, and the stuff you put into them is saved like it&#8217;s supposed to be) then you&#8217;ve done it correctly.  The code doesn&#8217;t *display* the stuff, it only creates the extra fields and saves the information.  You have to edit your theme to make it show the items you&#8217;ve put into it.  </p>
<p>So without knowing what you&#8217;ve put into your theme files, i have no way of troubleshooting the issue.  Sounds like it&#8217;s working like it&#8217;s supposed to, but you&#8217;ve just either used the wrong code in your theme files to display the information, or you haven&#8217;t done it yet at all.</p>
<p>At the end of the post above is a little section on how to pull the info out and display it, see how that compares to what you&#8217;ve got.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://brassblogs.com/cms-platforms/custom-write-panels-for-wordpress-3-0#comment-438</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Tue, 24 Aug 2010 10:04:06 +0000</pubDate>
		<guid isPermaLink="false">http://brassblogs.com/?p=238#comment-438</guid>
		<description>Hey, i have read your tutorial and others on the same subject and just cannot get it to work, The backend bits show up fine but it will not display on my page, i have checked my code against others and it is exactly the same so i do not understand where i am going wrong for it not to display.

Any suggestions would be great.</description>
		<content:encoded><![CDATA[<p>Hey, i have read your tutorial and others on the same subject and just cannot get it to work, The backend bits show up fine but it will not display on my page, i have checked my code against others and it is exactly the same so i do not understand where i am going wrong for it not to display.</p>
<p>Any suggestions would be great.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

