<?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-User-CSS &#8211; WordPress Plugin</title>
	<atom:link href="http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/</link>
	<description>What is Jeremy thinking about?</description>
	<lastBuildDate>Sat, 21 Aug 2010 04:43:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Wayne</title>
		<link>http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/comment-page-1/#comment-2090</link>
		<dc:creator>Wayne</dc:creator>
		<pubDate>Tue, 04 Aug 2009 00:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oremj.com/?p=34#comment-2090</guid>
		<description>Do you know whether it&#039;s possible to have a slide-out menu that contains a tag cloud or some other way to browse an archive? 

It would be something like this:

ARCHIVE (top menu item)
&gt; TAGS 
   &gt;&gt; (all tags listed as slideout)
&gt; CATEGORIES
   &gt;&gt; (all categories listed as a slideout)
&gt; MONTH
   &gt;&gt; (all months listed as a slideout)</description>
		<content:encoded><![CDATA[<p>Do you know whether it&#8217;s possible to have a slide-out menu that contains a tag cloud or some other way to browse an archive? </p>
<p>It would be something like this:</p>
<p>ARCHIVE (top menu item)<br />
&gt; TAGS<br />
   &gt;&gt; (all tags listed as slideout)<br />
&gt; CATEGORIES<br />
   &gt;&gt; (all categories listed as a slideout)<br />
&gt; MONTH<br />
   &gt;&gt; (all months listed as a slideout)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oremj</title>
		<link>http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/comment-page-1/#comment-1758</link>
		<dc:creator>oremj</dc:creator>
		<pubDate>Thu, 16 Jul 2009 18:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oremj.com/?p=34#comment-1758</guid>
		<description>Thanks for the advice. I&#039;ve moved the options page to the appearance menu and fixed a couple of other bugs in version 0.2.</description>
		<content:encoded><![CDATA[<p>Thanks for the advice. I&#8217;ve moved the options page to the appearance menu and fixed a couple of other bugs in version 0.2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip M. Hofer (Frumph)</title>
		<link>http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/comment-page-1/#comment-1284</link>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
		<pubDate>Fri, 27 Mar 2009 00:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oremj.com/?p=34#comment-1284</guid>
		<description>function custom_user_css_menu() {
	add_submenu_page(&#039;themes.php&#039;, &#039;Custom User CSS&#039;, &#039;Custom User CSS&#039;, 8, &#039;Custom User CSS&#039;, &#039;custom_user_css_options&#039;);
}

This puts the Custom CSS inside the Appearance Menu for users.</description>
		<content:encoded><![CDATA[<p>function custom_user_css_menu() {<br />
	add_submenu_page(&#8216;themes.php&#8217;, &#8216;Custom User CSS&#8217;, &#8216;Custom User CSS&#8217;, 8, &#8216;Custom User CSS&#8217;, &#8216;custom_user_css_options&#8217;);<br />
}</p>
<p>This puts the Custom CSS inside the Appearance Menu for users.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip M. Hofer (Frumph)</title>
		<link>http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/comment-page-1/#comment-1283</link>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
		<pubDate>Fri, 27 Mar 2009 00:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oremj.com/?p=34#comment-1283</guid>
		<description>custom_user_css.php line(52)

		$css_val = $wpdb-&gt;escape(strip_tags($_POST[ $opt_name ]));

....
Yeah I know, redundant, but still helpful.  Makes it extra secure.</description>
		<content:encoded><![CDATA[<p>custom_user_css.php line(52)</p>
<p>		$css_val = $wpdb-&gt;escape(strip_tags($_POST[ $opt_name ]));</p>
<p>&#8230;.<br />
Yeah I know, redundant, but still helpful.  Makes it extra secure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frederick</title>
		<link>http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/comment-page-1/#comment-1109</link>
		<dc:creator>Frederick</dc:creator>
		<pubDate>Sun, 15 Feb 2009 22:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oremj.com/?p=34#comment-1109</guid>
		<description>Hello and thanks.

I have a few recommendations for this plugin, especially when used on WordPress µ.

First of all, &lt;em&gt;add the menu page under the Appearance menu&lt;/em&gt;. This can be accomplished with
&lt;code&gt;add_theme_page(&#039;Custom CSS Options&#039;, &#039;Custom CSS&#039;, &#039;switch_themes&#039;, __FILE__, &#039;custom_user_css_options&#039;);&lt;/code&gt;
as opposed to the current call under the custom_user_css_menu() function.

Secondly, when installing for WordPress µ, it is wise to place the plugin folder under /wp-content/plugins/ BUT also to move the main plugin file to /wp-content/mu-plugins/. This will enable the Custom CSS feature for all blogs and users. It is necessary to rewrite the include() function so that the menu page, which exists in /wp-content/plugins/custom-user-css/, can be included or required by the plugin file.

Hope this helps the plugin.

Regards,
Frederick</description>
		<content:encoded><![CDATA[<p>Hello and thanks.</p>
<p>I have a few recommendations for this plugin, especially when used on WordPress µ.</p>
<p>First of all, <em>add the menu page under the Appearance menu</em>. This can be accomplished with<br />
<code>add_theme_page('Custom CSS Options', 'Custom CSS', 'switch_themes', __FILE__, 'custom_user_css_options');</code><br />
as opposed to the current call under the custom_user_css_menu() function.</p>
<p>Secondly, when installing for WordPress µ, it is wise to place the plugin folder under /wp-content/plugins/ BUT also to move the main plugin file to /wp-content/mu-plugins/. This will enable the Custom CSS feature for all blogs and users. It is necessary to rewrite the include() function so that the menu page, which exists in /wp-content/plugins/custom-user-css/, can be included or required by the plugin file.</p>
<p>Hope this helps the plugin.</p>
<p>Regards,<br />
Frederick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sethb</title>
		<link>http://blog.oremj.com/2009/02/11/custom-user-css-wordpress-plugin/comment-page-1/#comment-1070</link>
		<dc:creator>sethb</dc:creator>
		<pubDate>Thu, 12 Feb 2009 16:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oremj.com/?p=34#comment-1070</guid>
		<description>Thanks, Jeremy.  I hope to use this to practice some basic CSS experiments with my blog.  It&#039;ll be very helpful and I really appreciate your work.</description>
		<content:encoded><![CDATA[<p>Thanks, Jeremy.  I hope to use this to practice some basic CSS experiments with my blog.  It&#8217;ll be very helpful and I really appreciate your work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

