<?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>Frumph.NET &#187; tricks</title>
	<atom:link href="http://frumph.net/tag/tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://frumph.net</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sun, 20 May 2012 22:46:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Comicpress RSS feed for Comics Only</title>
		<link>http://frumph.net/2009/07/13/comicpress-rss-feed-for-comics-only/</link>
		<comments>http://frumph.net/2009/07/13/comicpress-rss-feed-for-comics-only/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 14:00:20 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://frumph.webcomicplanet.com/?p=179</guid>
		<description><![CDATA[WordPress has a nifty little feature that you can specify a specific category alone to show the feeds with. (if you&#8217;re using pretty permalinks) for example, johnn saturn&#8217;s normal feed is:  http://johnnysaturn.com/feed/ &#8211; that will display the comics, the blogs [&#8230;] <a class="more-link" href="http://frumph.net/2009/07/13/comicpress-rss-feed-for-comics-only/">&#8595; Read the rest of this entry...</a>]]></description>
			<content:encoded><![CDATA[<p>WordPress has a nifty little feature that you can specify a specific category alone to show the feeds with.</p>
<p>(if you&#8217;re using pretty permalinks)</p>
<p>for example, johnn saturn&#8217;s normal feed is:  <a href="http://johnnysaturn.com/feed/">http://johnnysaturn.com/feed/</a> &#8211; that will display the comics, the blogs and everything it can in one big open feed.</p>
<p>However if you want to see *just* his comic feed it would be: <a href="http://johnnysaturn.com/category/comics/feed/">http://johnnysaturn.com/category/comics/feed/</a></p>
<p>That will display the feed for *just* the comics category.  Give it a try on your site, like:  http:// yoursite.com / category / &lt;comicscategoryname&gt; / feed /</p>
<p>My feed for Anomaly comic : <a href="http://anomaly.frumph.net/category/webcomic/feed/">http://anomaly.frumph.net/category/webcomic/feed/</a></p>
<p>I use the &#8220;webcomic&#8221; category for the comics so ^ putting that in will show just the category webcomic feed.</p>
<p>This works best with pretty permalinks btw.   Best permalink setting is /%category%/%postname%/  if you don&#8217;t have that as the permalink then change it, cause google and yahoo and other engines *hate* the permalinks that look like dates.</p>
<p>- Phil</p>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=179" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2009/07/13/comicpress-rss-feed-for-comics-only/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Hiding Menubar links from being viewed &#8211; wp_list_pages</title>
		<link>http://frumph.net/2009/07/19/hiding-menubar-links-from-being-viewed-wp_list_pages/</link>
		<comments>http://frumph.net/2009/07/19/hiding-menubar-links-from-being-viewed-wp_list_pages/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 07:09:07 +0000</pubDate>
		<dc:creator>Philip M. Hofer (Frumph)</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[menubar]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://frumph.webcomicplanet.com/?p=194</guid>
		<description><![CDATA[Someone on twitter was asking how to &#8216;hide&#8217; menubar items from being displayed to the end user, but still exist. This can be done with various plugins on the WordPress repository. Going to show you how to do it with [&#8230;] <a class="more-link" href="http://frumph.net/2009/07/19/hiding-menubar-links-from-being-viewed-wp_list_pages/">&#8595; Read the rest of this entry...</a>]]></description>
			<content:encoded><![CDATA[<p>Someone on twitter was asking how to &#8216;hide&#8217; menubar items from being displayed to the end user, but still exist.  This can be done with various plugins on the WordPress repository.   Going to show you how to do it with CSS.</p>
<p>Well this is how it works, the wp_list_pages() function generates the links  that are shown in your menubar, with a side-effect of adding CSS class statements.</p>
<p>If you view&#8217; your source code (view-source) while looking at your site you will see the &#8216;end result&#8217; output of your website you can see what classes are created for each menu item.</p>
<p>For example, here at frumph.net if you view the source, by right-clicking the screen then choosing view-source you will see that the &#8220;archive&#8221; link shows that there is</p>
<pre class="brush: php; title: ; notranslate">
&amp;lt;li class=&amp;quot;page-item page-item-3&amp;quot;&amp;gt;
</pre>
<p> .. that class page-item-3 is specific and individual for that archive link.</p>
<p>If I wanted to hide the archive link from being viewed in the menubar I just need to do a little CSS.</p>
<pre class="brush: css; title: ; notranslate">
.page-item-3 {
     display:none;
}
</pre>
<p>Creating a class in your stylesheet of the name you found for that menu item will let you do what you want with it. Adding display:none; to the class in the css will make it &#8216;not visible&#8217; to be seen in a browser.</p>
<p>- Phil</p>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=194" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/2009/07/19/hiding-menubar-links-from-being-viewed-wp_list_pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

