<?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 for Gudstoff</title>
	<atom:link href="http://www.gudstoff.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.gudstoff.com</link>
	<description>gudstoff - your source to good stuff</description>
	<pubDate>Tue, 09 Feb 2010 03:45:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on FreePBX/PIAF – how to change default music on hold (MOH) by Sam</title>
		<link>http://www.gudstoff.com/?p=85&#038;cpage=1#comment-2107</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 27 May 2009 13:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.gudstoff.com/?p=85#comment-2107</guid>
		<description>test comment</description>
		<content:encoded><![CDATA[<p>test comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic menu highlighting with WordPress by childsdesign</title>
		<link>http://www.gudstoff.com/?p=13&#038;cpage=1#comment-2105</link>
		<dc:creator>childsdesign</dc:creator>
		<pubDate>Tue, 26 May 2009 15:29:01 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=13#comment-2105</guid>
		<description>Hi,

First of all thanks for the tip off with the page_item and current_page_item styles, I had no idea it was that easy to do!

However, could you please tell me where I should add the php code you have on this page which checks to see if the current page is the homepage and highlight it accordingly?

I've tried adding it on both my header.php and sidebar.php and it messes up my site on both files.

Any ideas?

Thanks,
Sam :)</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>First of all thanks for the tip off with the page_item and current_page_item styles, I had no idea it was that easy to do!</p>
<p>However, could you please tell me where I should add the php code you have on this page which checks to see if the current page is the homepage and highlight it accordingly?</p>
<p>I&#8217;ve tried adding it on both my header.php and sidebar.php and it messes up my site on both files.</p>
<p>Any ideas?</p>
<p>Thanks,<br />
Sam <img src='http://www.gudstoff.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic menu highlighting with WordPress by Administrator</title>
		<link>http://www.gudstoff.com/?p=13&#038;cpage=1#comment-63</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Thu, 19 Oct 2006 04:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=13#comment-63</guid>
		<description>&lt;p&gt;the visual effect, might be different depending on the theme you use, some themes might not use default css styles. the blix theme uses the following code to highlight the selected menu item:&lt;/p&gt; &lt;p&gt;&lt;code&gt;&lt;ul&gt;&lt;br /&gt; &#160;&#160;&#160; &lt;li&gt;&lt;?php if (is_home()) echo &#34; class=\&#34;selected\&#34;&#34;; ?&gt;&gt;&lt;a xhref=&#34;&lt;?php bloginfo('url'); ?&gt;&#34;&gt;Home&lt;/a&gt;&lt;/li&gt;&lt;br /&gt; &#160;&#160;&#160; &lt;?php	$pages = BX_get_pages();&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; if ($pages) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; foreach ($pages as $page) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $page_id = $page-&gt;ID;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $page_title = $page-&gt;post_title;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $page_name = $page-&gt;post_name;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; if ($page_name == &#34;archives&#34;) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id) &#124;&#124; is_archive() &#124;&#124; is_search() &#124;&#124; is_single())?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; echo &#34;&lt;li&#34;.$selected.&#34;&gt;&lt;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&gt;Archives&lt;/a&gt;&lt;/li&gt;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; elseif($page_name == &#34;about&#34;) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id))?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; echo &#34;&lt;li&#34;.$selected.&#34;&gt;&lt;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&gt;About&lt;/a&gt;&lt;/li&gt;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; elseif ($page_name == &#34;contact&#34;) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id))?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; echo &#34;&lt;li&#34;.$selected.&#34;&gt;&lt;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&gt;Contact&lt;/a&gt;&lt;/li&gt;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; elseif ($page_name == &#34;about_short&#34;) {/*ignore*/}&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; else {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id))?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160; &#160; &#160;&#160; &#160;&#160;&#160; echo &#34;&lt;li&#34;.$selected.&#34;&gt;&lt;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&gt;$page_title&lt;/a&gt;&lt;/li&gt;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; }&lt;br /&gt; ?&gt;&lt;br /&gt; &lt;/ul&gt;&lt;/code&gt;&lt;/p&gt; &lt;p&gt;in this case you would modify the class &#34;.selected&#34; from the stylesheet, to modify the look.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>the visual effect, might be different depending on the theme you use, some themes might not use default css styles. the blix theme uses the following code to highlight the selected menu item:</p>
<p><code>&lt;ul&gt;<br /> &nbsp;&nbsp;&nbsp; &lt;li&gt;&lt;?php if (is_home()) echo &quot; class=\&quot;selected\&quot;&quot;; ?&gt;&gt;&lt;a xhref=&quot;&lt;?php bloginfo(&#8217;url&#8217;); ?&gt;&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;<br /> &nbsp;&nbsp;&nbsp; &lt;?php	$pages = BX_get_pages();<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if ($pages) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; foreach ($pages as $page) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $page_id = $page-&gt;ID;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $page_title = $page-&gt;post_title;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $page_name = $page-&gt;post_name;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if ($page_name == &quot;archives&quot;) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id) || is_archive() || is_search() || is_single())?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;Archives&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elseif($page_name == &quot;about&quot;) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id))?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;About&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elseif ($page_name == &quot;contact&quot;) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id))?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elseif ($page_name == &quot;about_short&quot;) {/*ignore*/}<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id))?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;$page_title&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; }<br /> ?&gt;<br /> &lt;/ul&gt;</code></p>
<p>in this case you would modify the class &quot;.selected&quot; from the stylesheet, to modify the look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic menu highlighting with WordPress by HektikLyfe</title>
		<link>http://www.gudstoff.com/?p=13&#038;cpage=1#comment-62</link>
		<dc:creator>HektikLyfe</dc:creator>
		<pubDate>Wed, 18 Oct 2006 17:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=13#comment-62</guid>
		<description>Hello, thanks for the informative post.

I use a different theme and for some reason modifying the css doesn't work.

It highlights them when I mouseover but not when it is the main page.

Any more ideas?</description>
		<content:encoded><![CDATA[<p>Hello, thanks for the informative post.</p>
<p>I use a different theme and for some reason modifying the css doesn&#8217;t work.</p>
<p>It highlights them when I mouseover but not when it is the main page.</p>
<p>Any more ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fight those nasty viruses by Administrator</title>
		<link>http://www.gudstoff.com/?p=16&#038;cpage=1#comment-55</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Mon, 28 Aug 2006 03:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=16#comment-55</guid>
		<description>Here's an add-on to the post, another &lt;a href="http://www.free-av.com" rel="nofollow"&gt;free anti-virus&lt;/a&gt; you can checkout and use.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s an add-on to the post, another <a href="http://www.free-av.com" rel="nofollow">free anti-virus</a> you can checkout and use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Our dog Fonzi is 1 year old by Gudstoff &#187; Time is Precious</title>
		<link>http://www.gudstoff.com/?p=3&#038;cpage=1#comment-53</link>
		<dc:creator>Gudstoff &#187; Time is Precious</dc:creator>
		<pubDate>Sat, 26 Aug 2006 02:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=3#comment-53</guid>
		<description>[...] I can&#8217;t promise that I will post regularly, but I do hope to post more, &#34;at least more than 3 times a year&#34;&#8230; My dog Fonzi&#8217;s 2nd birthday will mark the first year of my Gudstoff Blog, this year, my goal will be to post more frequently, hopefully adding a few tutorials , and more than a couple of Net Pick. [...]</description>
		<content:encoded><![CDATA[<p>[...] I can&#8217;t promise that I will post regularly, but I do hope to post more, &quot;at least more than 3 times a year&quot;&#8230; My dog Fonzi&#8217;s 2nd birthday will mark the first year of my Gudstoff Blog, this year, my goal will be to post more frequently, hopefully adding a few tutorials , and more than a couple of Net Pick. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Our dog Fonzi is 1 year old by sam</title>
		<link>http://www.gudstoff.com/?p=3&#038;cpage=1#comment-3</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Sun, 04 Dec 2005 21:23:06 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=3#comment-3</guid>
		<description>Cute doggie, happy birthday fonzi</description>
		<content:encoded><![CDATA[<p>Cute doggie, happy birthday fonzi</p>
]]></content:encoded>
	</item>
</channel>
</rss>
