<?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/"
	
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Theme Customizer Part Deux: Getting rid of Options pages</title>
	<atom:link href="http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/</link>
	<description>You have to use an Ottopress to get fresh squeezed Otto.</description>
	<lastBuildDate>Wed, 22 May 2013 11:11:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta3-24284</generator>
	<item>
		<title>By: Native Imaging</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11750</link>
		<dc:creator>Native Imaging</dc:creator>
		<pubDate>Sun, 07 Apr 2013 16:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11750</guid>
		<description><![CDATA[@Eduardo, 
Thank You for this code snippet. I see how this adds the uploaded media library to custom image controllers, but for some reason, the only images that show are the background images previously uploaded. Is there something i&#039;m missing to make sure that the previously uploaded images that display are from that specific custom image upload controller?]]></description>
		<content:encoded><![CDATA[<p>@Eduardo,<br />
Thank You for this code snippet. I see how this adds the uploaded media library to custom image controllers, but for some reason, the only images that show are the background images previously uploaded. Is there something i&#8217;m missing to make sure that the previously uploaded images that display are from that specific custom image upload controller?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Native Imaging</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11741</link>
		<dc:creator>Native Imaging</dc:creator>
		<pubDate>Mon, 01 Apr 2013 22:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11741</guid>
		<description><![CDATA[OK. Great Start. Can you please finish a litte more on the Step 3? It doesn&#039;t really wrap things up enough to be able to implement properly into page elements. Also, not sure why, but when using custom id&#039;s I get a php error on the site. I was hoping for a step 4 to mirror the controls on a custom admin panel as well as how the CSS is cued or generated. I am very interested in relying only on the existing WordPress API&#039;s and js files. I&#039;ve attempted to use Options Framework and OptionTree, but I&#039;m extremely afraid to sell a theme that will have a conflict when updating. It seems that every source I can find online about creating custom wordpress admin panels are incomplete, and no offer little to no support...]]></description>
		<content:encoded><![CDATA[<p>OK. Great Start. Can you please finish a litte more on the Step 3? It doesn&#8217;t really wrap things up enough to be able to implement properly into page elements. Also, not sure why, but when using custom id&#8217;s I get a php error on the site. I was hoping for a step 4 to mirror the controls on a custom admin panel as well as how the CSS is cued or generated. I am very interested in relying only on the existing WordPress API&#8217;s and js files. I&#8217;ve attempted to use Options Framework and OptionTree, but I&#8217;m extremely afraid to sell a theme that will have a conflict when updating. It seems that every source I can find online about creating custom wordpress admin panels are incomplete, and no offer little to no support&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barbara</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11645</link>
		<dc:creator>Barbara</dc:creator>
		<pubDate>Fri, 22 Feb 2013 18:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11645</guid>
		<description><![CDATA[Hi Otto, 

I&#039;m trying to get the Background Color control, which is in the Colors section by default, to have a priority 1 - as I&#039;m adding color controls for a number of other areas in my theme.  I have all the other controls in this section respecting a priority order - but the default background_color is stumping me.  I used your add_theme_support in my functions file to set the default color, thank you.  Is there something similar I can do in my functions file to set the priority on the color control for this setting?]]></description>
		<content:encoded><![CDATA[<p>Hi Otto, </p>
<p>I&#8217;m trying to get the Background Color control, which is in the Colors section by default, to have a priority 1 &#8211; as I&#8217;m adding color controls for a number of other areas in my theme.  I have all the other controls in this section respecting a priority order &#8211; but the default background_color is stumping me.  I used your add_theme_support in my functions file to set the default color, thank you.  Is there something similar I can do in my functions file to set the priority on the color control for this setting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eduardo</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11616</link>
		<dc:creator>Eduardo</dc:creator>
		<pubDate>Fri, 08 Feb 2013 13:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11616</guid>
		<description><![CDATA[@Cassie, @David

I had to extend WP_Customize_Image_Control class and add my own &lt;code&gt;tab_uploaded()&lt;/code&gt; function to filter the attachments.

If you want to use a context for your uploaded images (e.g. you&#039;re creating a favicon uploader and only need to return already uploaded favicons), seems that all you have to do is to define a &#039;context&#039; when you create a control. If you do this, WP will create a &lt;code&gt;_wp_attachment_context&lt;/code&gt; meta key with the value provided inside your &lt;code&gt;add_control()&lt;/code. Then you&#039;ll be able to use get_posts() the same way it&#039;s used in WP_Customize_Background_Image_Control.

Here&#039;s my code: https://gist.github.com/eduardozulian/4739075

Hope that helps. : )]]></description>
		<content:encoded><![CDATA[<p>@Cassie, @David</p>
<p>I had to extend WP_Customize_Image_Control class and add my own <code>tab_uploaded()</code> function to filter the attachments.</p>
<p>If you want to use a context for your uploaded images (e.g. you&#8217;re creating a favicon uploader and only need to return already uploaded favicons), seems that all you have to do is to define a &#8216;context&#8217; when you create a control. If you do this, WP will create a <code>_wp_attachment_context</code> meta key with the value provided inside your <code>add_control()&lt;/code. Then you&#039;ll be able to use get_posts() the same way it&#039;s used in WP_Customize_Background_Image_Control.</p>
<p>Here&#039;s my code: <a href="https://gist.github.com/eduardozulian/4739075" rel="nofollow">https://gist.github.com/eduardozulian/4739075</a></p>
<p>Hope that helps. : )</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dario</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11602</link>
		<dc:creator>Dario</dc:creator>
		<pubDate>Mon, 04 Feb 2013 18:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11602</guid>
		<description><![CDATA[Totally write, plus I had read http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/ before. so 100% my bad.. Thanks a bunch!]]></description>
		<content:encoded><![CDATA[<p>Totally write, plus I had read <a href="http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/" rel="nofollow">http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/</a> before. so 100% my bad.. Thanks a bunch!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11601</link>
		<dc:creator>Otto</dc:creator>
		<pubDate>Mon, 04 Feb 2013 17:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11601</guid>
		<description><![CDATA[I gave the valid control types in the previous tutorial, and I explained how to make your own custom controls in the tutorial that follows this one:

http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/
http://ottopress.com/2012/making-a-custom-control-for-the-theme-customizer/]]></description>
		<content:encoded><![CDATA[<p>I gave the valid control types in the previous tutorial, and I explained how to make your own custom controls in the tutorial that follows this one:</p>
<p><a href="http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/" rel="nofollow">http://ottopress.com/2012/how-to-leverage-the-theme-customizer-in-your-own-themes/</a><br />
<a href="http://ottopress.com/2012/making-a-custom-control-for-the-theme-customizer/" rel="nofollow">http://ottopress.com/2012/making-a-custom-control-for-the-theme-customizer/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dario</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11600</link>
		<dc:creator>Dario</dc:creator>
		<pubDate>Mon, 04 Feb 2013 17:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11600</guid>
		<description><![CDATA[Ok maybe not... trying anything other than text throws an error 
&lt;code&gt;Fatal error: Call to a member function check_capabilities() on a non-object&lt;/code&gt;
So we might wait and see if Otto give us a better response :p]]></description>
		<content:encoded><![CDATA[<p>Ok maybe not&#8230; trying anything other than text throws an error<br />
<code>Fatal error: Call to a member function check_capabilities() on a non-object</code><br />
So we might wait and see if Otto give us a better response :p</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dario</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11599</link>
		<dc:creator>Dario</dc:creator>
		<pubDate>Mon, 04 Feb 2013 17:26:30 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11599</guid>
		<description><![CDATA[To answer my own question, there&#039;s 5 types.
&lt;code&gt;
text
checkbox
radio
select
dropdown-pages
&lt;/code&gt;

Strangely enough there&#039;s no textarea bummer.]]></description>
		<content:encoded><![CDATA[<p>To answer my own question, there&#8217;s 5 types.<br />
<code><br />
text<br />
checkbox<br />
radio<br />
select<br />
dropdown-pages<br />
</code></p>
<p>Strangely enough there&#8217;s no textarea bummer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dario</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11598</link>
		<dc:creator>Dario</dc:creator>
		<pubDate>Mon, 04 Feb 2013 17:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11598</guid>
		<description><![CDATA[Hi Otto, so after some re-search (though I have not gone to see the core code) what would are the types available for the controls besides &#039;type&#039;    =&gt; &#039;text&#039;,?

P.S: Also your comments are kinda broken when you log in with twitter ;)

&lt;code&gt;ERROR: please fill the required fields (name, email).&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Hi Otto, so after some re-search (though I have not gone to see the core code) what would are the types available for the controls besides &#8216;type&#8217;    =&gt; &#8216;text&#8217;,?</p>
<p>P.S: Also your comments are kinda broken when you log in with twitter <img src='http://ottopress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><code>ERROR: please fill the required fields (name, email).</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Custom Taxonomy Control for the Theme Customizer &#124; Eric Juden</title>
		<link>http://ottopress.com/2012/theme-customizer-part-deux-getting-rid-of-options-pages/comment-page-1/#comment-11579</link>
		<dc:creator>Custom Taxonomy Control for the Theme Customizer &#124; Eric Juden</dc:creator>
		<pubDate>Mon, 28 Jan 2013 15:13:05 +0000</pubDate>
		<guid isPermaLink="false">http://ottopress.com/?p=825#comment-11579</guid>
		<description><![CDATA[[...] had a series of articles highlighting how to use the theme customizer in your WordPress themes instead of creating [...]]]></description>
		<content:encoded><![CDATA[<p>[...] had a series of articles highlighting how to use the theme customizer in your WordPress themes instead of creating [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Object Caching 428/445 objects using xcache

 Served from: ottodestruct.com @ 2013-05-22 08:22:30 by W3 Total Cache -->