<?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: How to Properly Style Sidebar Text Widgets</title> <atom:link href="http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/feed/" rel="self" type="application/rss+xml" /><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/</link> <description>WP-Vybe Premium WordPress Magazine Theme</description> <lastBuildDate>Sun, 20 Sep 2009 10:18:31 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <item><title>By: Doraemon</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-310</link> <dc:creator>Doraemon</dc:creator> <pubDate>Sun, 17 May 2009 04:39:20 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-310</guid> <description>Testing...</description> <content:encoded><![CDATA[<p>Testing&#8230;</p> ]]></content:encoded> </item> <item><title>By: mma sports</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-309</link> <dc:creator>mma sports</dc:creator> <pubDate>Wed, 17 Dec 2008 14:50:54 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-309</guid> <description>I have been searching for this for a while today thanks very much for your support.</description> <content:encoded><![CDATA[<p>I have been searching for this for a while today thanks very much for your support.</p> ]]></content:encoded> </item> <item><title>By: Alistair Barnett</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-308</link> <dc:creator>Alistair Barnett</dc:creator> <pubDate>Sun, 12 Oct 2008 00:26:17 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-308</guid> <description>Hi everyone,If you are looking for support, please visit our forum at http://www.solostream.com/forum/ for immediate answers to your support questions. Otherwise, there will be a delay in answering your support-related comment if left here.If this doesn&#039;t apply to you, feel free to comment!Alistair</description> <content:encoded><![CDATA[<p>Hi everyone,</p><p>If you are looking for support, please visit our forum at <a
href="http://www.solostream.com/forum/" rel="nofollow">http://www.solostream.com/forum/</a> for immediate answers to your support questions. Otherwise, there will be a delay in answering your support-related comment if left here.</p><p>If this doesn&#8217;t apply to you, feel free to comment!</p><p>Alistair</p> ]]></content:encoded> </item> <item><title>By: Michael Pollock</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-307</link> <dc:creator>Michael Pollock</dc:creator> <pubDate>Mon, 29 Sep 2008 16:00:00 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-307</guid> <description>Dusty:Open your Main Index Template and find this code:&lt;code&gt;&lt;?php
$id = $wpdb-&gt;get_var(&quot;SELECT term_ID FROM $wpdb-&gt;terms WHERE slug=&#039;featured&#039;&quot;);
$page = (get_query_var(&#039;paged&#039;)) ? get_query_var(&#039;paged&#039;) : 1;
query_posts(&quot;cat=-&#039; .$id. &#039;&amp;paged=$page&quot;); ?&gt;
&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;&lt;/code&gt;Change this line:&lt;code&gt;query_posts(&quot;cat=-&#039; .$id. &#039;&amp;paged=$page&quot;); ?&gt;&lt;/code&gt;to this:&lt;code&gt;query_posts(&quot;cat=-X,-&#039; .$id. &#039;&amp;paged=$page&quot;); ?&gt;&lt;/code&gt;In the above, X=the category ID of the category you are excluding.To find the category ID …There was a time when the category IDs were listed right next to the category. For some reason the WP development team changed that. So now, here’s how to find the category ID.In your WP control panel, click Manage &gt;&gt; Categories.Place your cursor over the category link and look in the bottom left corner of your browser. you should see a link appear in the browser status bar (If you don’t use the status bar, just click on the category, and the link will appear in the browser Address bar at the top).it will look like this:
&lt;code&gt;http://mysite.com/wp-admin/categories.php?action=edit&amp;cat_ID=22&lt;/code&gt;The ID in the above example is 22.You can read more here:
http://codex.wordpress.org/Template_Tags/query_posts#Exclude_Categories_From_Your_Home_Page</description> <content:encoded><![CDATA[<p>Dusty:</p><p>Open your Main Index Template and find this code:</p><p><code>&lt;?php<br
/> $id = $wpdb-&gt;get_var(&quot;SELECT term_ID FROM $wpdb-&gt;terms WHERE slug=&#039;featured&#039;&quot;);<br
/> $page = (get_query_var(&#039;paged&#039;)) ? get_query_var(&#039;paged&#039;) : 1;<br
/> query_posts(&quot;cat=-&#039; .$id. &#039;&amp;paged=$page&quot;); ?&gt;<br
/> &lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;</code></p><p>Change this line:</p><p><code>query_posts(&quot;cat=-&#039; .$id. &#039;&amp;paged=$page&quot;); ?&gt;</code></p><p>to this:</p><p><code>query_posts(&quot;cat=-X,-&#039; .$id. &#039;&amp;paged=$page&quot;); ?&gt;</code></p><p>In the above, X=the category ID of the category you are excluding.</p><p>To find the category ID …</p><p>There was a time when the category IDs were listed right next to the category. For some reason the WP development team changed that. So now, here’s how to find the category ID.</p><p>In your WP control panel, click Manage >> Categories.</p><p>Place your cursor over the category link and look in the bottom left corner of your browser. you should see a link appear in the browser status bar (If you don’t use the status bar, just click on the category, and the link will appear in the browser Address bar at the top).</p><p>it will look like this:<br
/> <code>http://mysite.com/wp-admin/categories.php?action=edit&amp;cat_ID=22</code></p><p>The ID in the above example is 22.</p><p>You can read more here:<br
/> <a
href="http://codex.wordpress.org/Template_Tags/query_posts#Exclude_Categories_From_Your_Home_Page" rel="nofollow">http://codex.wordpress.org/Template_Tags/query_posts#Exclude_Categories_From_Your_Home_Page</a></p> ]]></content:encoded> </item> <item><title>By: Dusty</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-306</link> <dc:creator>Dusty</dc:creator> <pubDate>Thu, 25 Sep 2008 14:16:09 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-306</guid> <description>Michael,Could you please explain how I can block a category from being displayed in the Recent Articles of the home page. I&#039;m trying to keep my Daily Tips Category displayed in the right side panel only.Thanks,</description> <content:encoded><![CDATA[<p>Michael,</p><p>Could you please explain how I can block a category from being displayed in the Recent Articles of the home page. I&#8217;m trying to keep my Daily Tips Category displayed in the right side panel only.</p><p>Thanks,</p> ]]></content:encoded> </item> <item><title>By: Dusty</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-305</link> <dc:creator>Dusty</dc:creator> <pubDate>Thu, 25 Sep 2008 14:02:50 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-305</guid> <description>Michael,Thanks for the link. This is exactly what I was after.</description> <content:encoded><![CDATA[<p>Michael,</p><p>Thanks for the link. This is exactly what I was after.</p> ]]></content:encoded> </item> <item><title>By: Michael Pollock</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-304</link> <dc:creator>Michael Pollock</dc:creator> <pubDate>Wed, 24 Sep 2008 16:36:13 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-304</guid> <description>Dusty:It looks like you may have figured this out. If not, there is a plugin that allows you to use PHP in sidebar text widgets.See it here:
http://wordpress.org/extend/plugins/php-code-widget/Best - Michael</description> <content:encoded><![CDATA[<p>Dusty:</p><p>It looks like you may have figured this out. If not, there is a plugin that allows you to use PHP in sidebar text widgets.</p><p>See it here:<br
/> <a
href="http://wordpress.org/extend/plugins/php-code-widget/" rel="nofollow">http://wordpress.org/extend/plugins/php-code-widget/</a></p><p>Best &#8211; Michael</p> ]]></content:encoded> </item> <item><title>By: Dusty</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-303</link> <dc:creator>Dusty</dc:creator> <pubDate>Sat, 20 Sep 2008 03:01:38 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-303</guid> <description>Can someone please explain how I can customize my right sidebar? I have a couple categories I want to display in the right sidebar only. ie Editors Choice. What I want to do is when I post something and categorize it for Editors Choice that it will show up in the Editors Choice section of the right sidebar. I need to do this with a couple categories so any input would be much appreciated. I have tried using Text widget but had no luck due to it not processing PHP.</description> <content:encoded><![CDATA[<p>Can someone please explain how I can customize my right sidebar? I have a couple categories I want to display in the right sidebar only. ie Editors Choice. What I want to do is when I post something and categorize it for Editors Choice that it will show up in the Editors Choice section of the right sidebar. I need to do this with a couple categories so any input would be much appreciated. I have tried using Text widget but had no luck due to it not processing PHP.</p> ]]></content:encoded> </item> <item><title>By: Jeff Lowy</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-302</link> <dc:creator>Jeff Lowy</dc:creator> <pubDate>Tue, 16 Sep 2008 00:14:06 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-302</guid> <description>Hi Martin,You will have to go to the &quot;Plugins&quot; page, then click edit on the widget you want to have the box around. Once you are in the editor for that widget you will have to enter the  (see above) in to that widget.</description> <content:encoded><![CDATA[<p>Hi Martin,</p><p>You will have to go to the &#8220;Plugins&#8221; page, then click edit on the widget you want to have the box around. Once you are in the editor for that widget you will have to enter the  (see above) in to that widget.</p> ]]></content:encoded> </item> <item><title>By: Martin</title><link>http://www.wp-vybe.com/2008/08/11/how-to-style-sidebar-text-widgets/comment-page-1/#comment-301</link> <dc:creator>Martin</dc:creator> <pubDate>Thu, 28 Aug 2008 02:51:36 +0000</pubDate> <guid
isPermaLink="false">http://www.wp-vybe.com/?p=651#comment-301</guid> <description>Thanks for that tweak. Just a question thought along the same lines.When using a plugin which includes a built in widget, how can I get it show the little box around it if it does not show the box automatically? Some plugins with a widget only show the fancy heading.Cheers.</description> <content:encoded><![CDATA[<p>Thanks for that tweak. Just a question thought along the same lines.</p><p>When using a plugin which includes a built in widget, how can I get it show the little box around it if it does not show the box automatically? Some plugins with a widget only show the fancy heading.</p><p>Cheers.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 5/20 queries in 0.041 seconds using disk

Served from: www.wp-vybe.com @ 2010-07-30 10:18:50 -->