<?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: WordPress Plugin Tutorial: Exclude Pages</title>
	<atom:link href="http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/</link>
	<description>Creating Thought Leadership</description>
	<lastBuildDate>Sat, 28 Jan 2012 23:52:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Christine</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-27058</link>
		<dc:creator>Christine</dc:creator>
		<pubDate>Fri, 30 Sep 2011 16:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-27058</guid>
		<description>Actually, if you just remove the (!) in the last line, it reverses the default.

Before:
&lt;code&gt;
// Check if our page is in the exclusion array
// The bang (!) reverses the polarity [1] of the boolean
return ! in_array( $post_ID, $excluded_ids );
&lt;/code&gt;

After:
&lt;code&gt;
// Check if our page is in the exclusion array
// The bang (!) reverses the polarity [1] of the boolean
return in_array( $post_ID, $excluded_ids );
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Actually, if you just remove the (!) in the last line, it reverses the default.</p>
<p>Before:<br />
<code><br />
// Check if our page is in the exclusion array<br />
// The bang (!) reverses the polarity [1] of the boolean<br />
return ! in_array( $post_ID, $excluded_ids );<br />
</code></p>
<p>After:<br />
<code><br />
// Check if our page is in the exclusion array<br />
// The bang (!) reverses the polarity [1] of the boolean<br />
return in_array( $post_ID, $excluded_ids );<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-14752</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Sat, 21 May 2011 04:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-14752</guid>
		<description>DOH!

&lt;code&gt;
// New post? Must NOT be included then.
//if ( ! $post_ID ) return false; // post_title == &#039;Auto Draft&#039;) return false;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>DOH!</p>
<p><code><br />
// New post? Must NOT be included then.<br />
//if ( ! $post_ID ) return false; // post_title == 'Auto Draft') return false;<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-14751</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Sat, 21 May 2011 04:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-14751</guid>
		<description>This fix didn&#039;t work for us.  We are using WP 3.1.2.

Here is what we did to get the desired functionality:

// New post? Must NOT be included then.
//if ( ! $post_ID ) return false; // post_title == &#039;Auto Draft&#039;) return false;</description>
		<content:encoded><![CDATA[<p>This fix didn&#8217;t work for us.  We are using WP 3.1.2.</p>
<p>Here is what we did to get the desired functionality:</p>
<p>// New post? Must NOT be included then.<br />
//if ( ! $post_ID ) return false; // post_title == &#8216;Auto Draft&#8217;) return false;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lynwood Murnan</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-10115</link>
		<dc:creator>Lynwood Murnan</dc:creator>
		<pubDate>Wed, 02 Mar 2011 07:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-10115</guid>
		<description>Muchos Gracias for your blog.Much thanks again.</description>
		<content:encoded><![CDATA[<p>Muchos Gracias for your blog.Much thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-978</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 29 Jan 2010 21:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-978</guid>
		<description>Thanks so much for sharing this tip!  Perfect!!

Jason</description>
		<content:encoded><![CDATA[<p>Thanks so much for sharing this tip!  Perfect!!</p>
<p>Jason</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-955</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Fri, 22 Jan 2010 15:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-955</guid>
		<description>To do that, you&#039;d have to manually edit the theme at the place you want the abbreviated list to display.

Disable the plugin. Go into your template code and look for &quot;wp_list_pages&quot; or &quot;wp_page_menu&quot;.

In the parenthesis after the function call:
wp_list_pages(HERE)

You can insert arguments that will tell WP how to display your list (including what pages to display or exclude). This is all explained in detail, with examples, at:
http://codex.wordpress.org/Template_Tags/wp_list_pages</description>
		<content:encoded><![CDATA[<p>To do that, you&#8217;d have to manually edit the theme at the place you want the abbreviated list to display.</p>
<p>Disable the plugin. Go into your template code and look for &#8220;wp_list_pages&#8221; or &#8220;wp_page_menu&#8221;.</p>
<p>In the parenthesis after the function call:<br />
wp_list_pages(HERE)</p>
<p>You can insert arguments that will tell WP how to display your list (including what pages to display or exclude). This is all explained in detail, with examples, at:<br />
<a href="http://codex.wordpress.org/Template_Tags/wp_list_pages" rel="nofollow">http://codex.wordpress.org/Template_Tags/wp_list_pages</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cassandra King</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-950</link>
		<dc:creator>Cassandra King</dc:creator>
		<pubDate>Wed, 20 Jan 2010 19:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-950</guid>
		<description>hi
i have a child page that i want to hide in the horizontal navigation, but NOT the side rigght navigation. i installed the plugin and it works great, but it DID remove the child page from my right hand nav. how can i exclude the child page from horizontal but keep in the sidebar nav?

thanks!
cass</description>
		<content:encoded><![CDATA[<p>hi<br />
i have a child page that i want to hide in the horizontal navigation, but NOT the side rigght navigation. i installed the plugin and it works great, but it DID remove the child page from my right hand nav. how can i exclude the child page from horizontal but keep in the sidebar nav?</p>
<p>thanks!<br />
cass</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Plugin Tutorial &#8211; Exclude Pages Plugin Change Default &#8230; &#124; Coder Online</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-699</link>
		<dc:creator>WordPress Plugin Tutorial &#8211; Exclude Pages Plugin Change Default &#8230; &#124; Coder Online</dc:creator>
		<pubDate>Wed, 16 Dec 2009 22:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-699</guid>
		<description>[...] Read this article: WordPress Plugin Tutorial &#8211; Exclude Pages Plugin Change Default &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Read this article: WordPress Plugin Tutorial &#8211; Exclude Pages Plugin Change Default &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.socialbootstrap.com/wordpress-plugin-tutorial-exclude-pages/comment-page-1/#comment-692</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Wed, 16 Dec 2009 17:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.socialbootstrap.com/?p=954#comment-692</guid>
		<description>By the way-
I&#039;d like to thank Simon (the plugin developer) for his ridiculously meticulous code commenting. I only have a vague understanding of PHP (I&#039;m learning...), but I was able to find this pretty easily because of his excellent (and sometimes humorous) comments.</description>
		<content:encoded><![CDATA[<p>By the way-<br />
I&#8217;d like to thank Simon (the plugin developer) for his ridiculously meticulous code commenting. I only have a vague understanding of PHP (I&#8217;m learning&#8230;), but I was able to find this pretty easily because of his excellent (and sometimes humorous) comments.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

