<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digital Raindrops &#187; categories</title>
	<atom:link href="http://digitalraindrops.net/demo/wordpress/cms-lite/tag/categories/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalraindrops.net/demo/wordpress/cms-lite</link>
	<description>quality free wordpress themes and tutorials for your blog, themes download, wordpress templates, download wordpress theme, wordpress template</description>
	<lastBuildDate>Sat, 01 May 2010 20:56:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Two Artisteer Menus</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 07:31:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[right]]></category>
		<category><![CDATA[Two Menus]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/?p=483</guid>
		<description><![CDATA[Many of us have downloaded the Artisteer 2.4 Beta, and one of the items from the ‘wish list’ was the Categories menu, you can choose a vertical and horizontal menu, but not two horizontals, Artisteer have done most of the work for us here, so lets explore the options and add some more functionality. Look [...]]]></description>
			<content:encoded><![CDATA[<p>Many of us have downloaded the Artisteer 2.4 Beta, and one of the items from the ‘wish list’ was the Categories menu, you can choose a vertical and horizontal menu, but not two horizontals, Artisteer have done most of the work for us here, so lets explore the options and add some more functionality.</p>
<p><span id="more-483"></span></p>
<p>Look at this image, we have the Home menu item and then three Categories and on the right we have a Page menu, pretty cool menu and not hard to achieve, you will need <strong>Artisteer 2.4</strong> to complete this tutorial.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu1.jpg"><img style="border: 0px" title="menu-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu1_thumb.jpg" border="0" alt="menu-1" width="702" height="109" /></a></p>
<p>All we have done here was to copy the art-menu() function from the functions.php file and paste this in the demo-functions.php, then we added two parameter which we will use to great effect later, and changed some of the code.</p>
<p>The first parameter we pass in is the menu type ‘pages’ or ‘’ for categories, the second is the position of the ‘Home’ menu item ‘left’, ‘right’ or ‘’, in the screenshot above we have added the home menu item before categories as we always expect this menu item to be the first.</p>
<p>This is the categories function &lt;?php demo_menu_items(&#8221;,&#8217;left&#8217;); ?&gt; ,the first parameter blank for categories the second to place the home button left of the categories, the pages &lt;?php demo_menu_items(&#8216;pages&#8217;,&#8221;); ?&gt; ,that is quite simple to use really.</p>
<p>As you can see we have also split the two menus, one left and one right, you can place either menu where you like, all on one line, left and right, and pages and categories in their own space,the menu function comes in a file that you can download the <strong>demo-functions.php</strong></p>
<p>Horizontal functions download the file here <a class="downloadlink" href="http://digitalraindrops.net/demo/wordpress/cms-lite/wp-content/plugins/download-monitor/download.php?id=3" title="Version1.00 downloaded 834 times" >Navigation Functions (834)</a> however the bonus file is downloadable at the end of this tutorial and includes both Horizontal and Vertical Menu functions.</p>
<p>You do not need to copy and paste the code, but for those that want to integrate this  into their own code here it is.</p>
<pre class="brush: php;">
/* Start CMS-Tutorial horizontal menu */
function demo_menu_items($menuType,$homePosition)
{
 global $artThemeSettings;
 if ('left' === $homePosition) {art_print_homepage();}
 if ('pages' === $menuType)
 {

 add_action('get_pages', 'art_menu_get_pages_filter');
 add_action('wp_list_pages', 'art_menu_list_pages_filter');

 wp_list_pages('title_li=&amp;sort_column=menu_order');

 remove_action('wp_list_pages', 'art_menu_list_pages_filter');
 remove_action('get_pages', 'art_menu_get_pages_filter');
 }
 else
 {
 add_action('get_terms', 'art_menu_get_terms_filter');
 add_action('wp_list_categories', 'art_menu_wp_list_categories_filter');

 wp_list_categories('title_li=');

 remove_action('wp_list_categories', 'art_menu_wp_list_categories_filter');
 remove_action('get_terms', 'art_menu_get_terms_filter');
 }
 if ('right' === $homePosition) {art_print_homepage();}
}
/* end CMS-Tutorial horizontal menu */
</pre>
<h2>Stylesheet</h2>
<p>If you want to option to split the menus on one line like the screenshot we need to add two small blocks to the <strong>demo-custom.css</strong> or the <strong>style.css.</strong></p>
<pre class="brush: css;">
/* Start cms-lite menu left and right blocks */
.demo-left
{
float: left;
}
.demo-right
{
   float: right;
}
/* End cms-lite menu left and right blocks */
</pre>
<h2>Functions File</h2>
<p>We need to let WordPress know that our function exists to do this we add a line at the start of the <strong>functions.php file </strong>in the root directory of the theme.</p>
<pre class="brush: php;">
/* Start code to load custom functions file */
if (file_exists(TEMPLATEPATH. '/demo-functions.php')) include_once(TEMPLATEPATH. '/demo-functions.php');
/* End code to load custom functions file */
</pre>
<h2>Header File</h2>
<p>This is where we call our new function, we have a few options here, if we just wanted to add our categories menu somewhere then we leave the Artisteer code and add in a call to our menu open <strong>header.php </strong>and add your line where you want the menu to appear.</p>
<pre class="brush: xml;">
&lt;div class=&quot;art-nav&quot;&gt;
  &lt;ul class=&quot;art-menu&quot;&gt;
   &lt;?php demo_menu_items('',''); ?&gt;
  &lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>This is the call for the menu in the screenshot.</p>
<pre class="brush: xml;">
&lt;div class =&quot;art-nav&quot;&gt;
  &lt;div class=&quot;demo-left&quot;&gt;
   &lt;ul class=&quot;art-menu&quot;&gt;
     &lt;?php demo_menu_items('','left'); ?&gt;
   &lt;/ul&gt;
  &lt;/div&gt;
  &lt;div class=&quot;demo-right&quot;&gt;
   &lt;ul class=&quot;art-menu&quot;&gt;
     &lt;?php demo_menu_items('pages',''); ?&gt;
   &lt;/ul&gt;
  &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>We will leave you to explore other options, we do love to hear from you so drop back and leave a comment or add a link to a live website.</p>
<h2>Bonus Section</h2>
<p>As you have taken the time to read this tutorial here is a bonus just for you, as well as the horizontal menu we have added the vertical, code is much the same except that you pass in &#8216;top&#8217; or &#8216;bottom&#8217; for the &#8216;Home&#8217;, and you set this up in the demo-functions.php file.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu-2.jpg"><img class="alignnone size-full wp-image-497" title="menu-2" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/menu-2.jpg" alt="" width="305" height="305" /></a></p>
<p>In the widgets you now have two Vertical Menus the Artisteer one and our Full Vertical Menu, so you could have pages on one and categories on the other, or use the Full Vertical Menu for both pages and categories in any order.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/widgets-1.jpg"><img class="alignnone size-full wp-image-498" title="widgets-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/widgets-1.jpg" alt="" width="306" height="284" /></a></p>
<p>Just the code and the download to add now, for the code in the <strong>demo-functions.php </strong>you find this function and set the parameters as you want in the <strong>full_widget_verticalmenu</strong> function look for the code in the first block.</p>
<p>Download: <a class="downloadlink" href="http://digitalraindrops.net/demo/wordpress/cms-lite/wp-content/plugins/download-monitor/download.php?id=4" title="Version1.00 downloaded 71 times" >Both Menu Functions (71)</a></p>
<pre class="brush: php;">
&lt;ul class=&quot;art-vmenu&quot;&gt;
&lt;?php demo_vmenu_items('','top'); ?&gt;
&lt;?php demo_vmenu_items('pages',''); ?&gt;
&lt;/ul&gt;
</pre>
<p>Categories only Code.</p>
<pre class="brush: php;">
&lt;ul class=&quot;art-vmenu&quot;&gt;
&lt;?php demo_vmenu_items('',''); ?&gt;
&lt;/ul&gt;
</pre>
<p>Pages only Code.</p>
<pre class="brush: php;">
&lt;ul class=&quot;art-vmenu&quot;&gt;
&lt;?php demo_vmenu_items('pages','top'); ?&gt;
&lt;/ul&gt;
</pre>
<p>Enjoy share and don&#8217;t forget to add some feedback.</p>
<p>-</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/18/two-artisteer-menus/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adding the cu3er Slideshow</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 16:49:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[cu3er]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Wedding Theme]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/</guid>
		<description><![CDATA[There are a number of slideshows you can use with your WordPress blog but these are often required in the main body of the blog page, in this tutorial we will walk you through installing the cu3er Slideshow as used in our wedding theme. We have used this plugin in the our wedding theme, the [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of slideshows you can use with your WordPress blog but these are often required in the main body of the blog page, in this tutorial we will walk you through installing the cu3er Slideshow as used in our wedding theme.</p>
<p><span id="more-450"></span>We have used this plugin in the our wedding theme, the cu3er slideshow  <a href="http://wordpress.org/extend/plugins/cu3er-post-elements/">WordPress plugin</a> from <a href="http://18elements.com/tools/cu3er-post-elements">18Elements</a> uses a category to feed the display, you can view: <a href="http://digitalraindrops.net/demo/wordpress/wedding-theme/">The Wedding Theme</a> here.</p>
<p>To have the slideshow embedded in the home page we cannot use a sidebar widget so you will have to add a line of code to the home page, this tutorial will use a 2.4 version theme created with the Artisteer template maker.</p>
<h2>Stylesheet</h2>
<p>We need to add a style to the stylesheet for our slideshow container, as we want to pad the slideshow, add borders, change margins to suit our theme, to start we need to open our <strong>style.css</strong> and find these <strong>two</strong> style blocks  making a note of the width settings, this will be used to calculate your slideshow width.</p>
<pre class="brush: css;">
/* begin Layout */
.art-content-layout
{
 display: table;
 padding: 0;
 border: none;
 width: 996px;
}

/* begin LayoutCell, content */
.art-content-layout .art-content
{
 width: 75%;
}
</pre>
<p>We now know the width of our theme and we can calculate the width of our slideshow 996px * 75% =  747px we will be adding a nice left and right margin of 25px and padding 5px to suit our theme, different themes will need adjusting, so our div width = 747 &#8211; 60 =  687px we rounded this to 685px to suit our theme.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er-2.jpg"><img class="alignnone size-full wp-image-453" title="cu3er-2" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er-2.jpg" alt="" width="700" height="336" /></a></p>
<p>Next step open our <strong>demo-custom.css</strong> or <strong>style.css</strong> file and paste in the code below.</p>
<pre class="brush: css;">
/* begin LayoutCell, sidebar1 */
.art-content-layout .demo-slideshow
{
 margin-top: 7px;
 margin-bottom: 7px;
 margin-left: 25px;
 margin-right: 25px;
 padding: 5px;
 width: 685px;
 border: dotted 2px #D1D1D1;
}
</pre>
<h2>Include file</h2>
<p>Next step is to create an include php file for our Slideshow which will be called from the index.php, copy the code below and paste into a new text editor file and save this as <strong>demo-slideshow.php</strong> .</p>
<pre class="brush: php;">
&lt;div class=&quot;demo-slideshow&quot;&gt;
 &lt;div class=&quot;inner&quot;&gt;
&lt;!-- cu3er Slideshow Start --&gt;
 &lt;?php if ( function_exists('install_cu3er') )  { install_cu3er(); } ?&gt;
&lt;!-- cu3er Slideshow End --&gt;
 &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>The last code step is to add a call to include our new file in our <strong>home.php</strong> or <strong>index.php</strong> or any other page file we may want the gallery on, find this line  <strong>&lt;div class=&#8221;art-layout-cell art-content&#8221;&gt;</strong> and insert the code below on the next line.</p>
<pre class="brush: php;">
&lt;!-- demo Slideshow Start --&gt;
&lt;?php if (file_exists(TEMPLATEPATH. '/demo-slideshow.php')) include(TEMPLATEPATH. '/demo-slideshow.php'); ?&gt;
&lt;!-- demo Slideshow End --&gt;
</pre>
<h2>Cu3er Setup</h2>
<p>We can now adjust the settings from Admin &gt; Settings &gt; Cu3er, enter the width and height to match our theme, we have worked out the width from the two values we noted earlier, and you can <a href="http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/">suppress the slideshow </a>category by following the other tutorial on this website.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er1.jpg"><img style="border: 0px" title="cu3er-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er1_thumb.jpg" border="0" alt="cu3er-1" width="701" height="253" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Hiding a Single Category</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 11:04:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[hide category]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[suppress]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/</guid>
		<description><![CDATA[There are a number of different slideshows out there that require you to post the images into a category that you select, this makes updating the slideshow easy to manage, one problem with this is that you cannot hide the posts, if you make the post private then the gallery stops, lets have a look [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of different slideshows out there that require you to post the images into a category that you select, this makes updating the slideshow easy to manage, one problem with this is that you cannot hide the posts, if you make the post private then the gallery stops, lets have a look at how we can suppress the slideshow gallery in our Artisteer theme.</p>
<p><span id="more-407"></span></p>
<p>We have used this in the our wedding theme, the cu3er slideshow  <a href="http://wordpress.org/extend/plugins/cu3er-post-elements/">WordPress plugin</a> from <a href="http://18elements.com/tools/cu3er-post-elements">18Elements</a> uses a category to feed the display, when we added the images the slideshow category and the posts appeared, not a problem if the images form a part of a full post, but messy when used as placeholders.</p>
<p>View: <a href="http://digitalraindrops.net/demo/wordpress/wedding-theme/">The Wedding Theme</a>.</p>
<p>We could hardcode the category ID and exclude this, that is fine on a static theme where we already know the Category ID, but what if we wanted to make the theme available to other clients or for free download.</p>
<p>On looking for a solution for our Artisteer theme to return a category ID we could not find a simple WordPress function to use on the lists, we have to create our own function that returns a value from the database, if you have been following our tutorials then you will already have demo-functions.php file, if not you can add them to the Artisteer functions.php file.</p>
<p>Add to either your <strong>demo-functions.php</strong> or the Artisteer theme <strong>functions.php</strong></p>
<pre class="brush: php;">
function demo_get_categoryID($catName){
 global $wpdb;
 $category_slug = str_replace(&quot; &quot;,&quot;-&quot;,$catName);
 $category_slug = strtolower($category_slug);
 $thevalue = $wpdb-&gt;get_var( &quot;SELECT term_id FROM $wpdb-&gt;terms WHERE slug = '&quot; . $category_slug . &quot;'&quot; );
 if ($thevalue) {
 return $thevalue;
 }else{
 return &quot;&quot;;
 }
}
</pre>
<p>Now we need to filter the categories list to exclude the slideshow category from the menu, you can change the name as required.</p>
<p>In the Artisteer theme <strong>functions.php</strong> we will add this block of code to the code that returns the categories list, look for this line and insert the code below.</p>
<p>Find: wp_list_categories(&#8216;title_li=&#8217;); and replace with the following lines.</p>
<pre class="brush: php;">
/* Start demo Category add line */
 $exclude = demo_get_categoryID('slideshow');
 if ($exclude){
 wp_list_categories('title_li=&amp;exclude='.$exclude.'');
 }else{
 wp_list_categories('title_li=');
}
/* End demo Category add line */
</pre>
<p>So your code block should look like this:</p>
<pre class="brush: php;">
add_action('get_terms', 'art_vmenu_get_terms_filter');
 add_action('wp_list_categories', 'art_vmenu_wp_list_categories_filter');

 /* Start demo Category add line */
 $exclude = demo_get_categoryID('slideshow');
 if ($exclude){
 wp_list_categories('title_li=&amp;exclude='.$exclude.'');
 }else{
 wp_list_categories('title_li=');
 }
 /* End demo Category add line */
 remove_action('wp_list_categories', 'art_vmenu_wp_list_categories_filter');
 remove_action('get_terms', 'art_vmenu_get_terms_filter');
</pre>
<p>last step is to add our image into two Artisteer files, <strong>index.php</strong> and <strong>archive.php</strong>, look for this line and insert the code below.</p>
<p>Find: &lt;?php while (have_posts()) : the_post(); ?&gt; and paste in the following lines</p>
<pre class="brush: xml;">
&lt;!-- Start Check if our post is a slideshow post --&gt;
&lt;?php $slideCat = demo_get_categoryID('slideshow'); ?&gt;
&lt;?php if (in_category($slideCat) ) continue; ?&gt;
&lt;!-- End Check if our post is a slideshow post continue if it is --&gt;
</pre>
<p>So your code block should look like this:</p>
<pre class="brush: xml;">
&lt;?php while (have_posts()) : the_post(); ?&gt;

&lt;!-- Start Check if our post is a slideshow post --&gt;
&lt;?php $slideCat = demo_get_categoryID('slideshow'); ?&gt;
&lt;?php if (in_category($slideCat) ) continue; ?&gt;
&lt;!-- End Check if our post is a slideshow post continue if it is--&gt;
&lt;div&gt;
</pre>
<p>Now we have hidden our slideshow category from view, remember that this will hide all posts in the specified named category, so only add the category to posts you do not want displayed .</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Untitled-12.jpg"><img class="alignnone size-full wp-image-435" title="Untitled-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Untitled-12.jpg" alt="" width="700" height="286" /></a></p>
<p>Please leave a comment if you have found this post of use to your workflow.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
