<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: exclude pages</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: exclude pages</description>
<language>en</language>
<pubDate>Tue, 24 Nov 2009 07:21:20 +0000</pubDate>

<item>
<title>nathan12343 on "Excluding pages if there is a particular custom field"</title>
<link>http://wordpress.org/support/topic/332865#post-1291392</link>
<pubDate>Mon, 23 Nov 2009 20:02:52 +0000</pubDate>
<dc:creator>nathan12343</dc:creator>
<guid isPermaLink="false">1291392@http://wordpress.org/support/</guid>
<description>&#60;p&#62;MichaelH sorted this out in another thread.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/support/topic/320032&#34;&#62; &#60;a href=&#34;http://wordpress.org/support/topic/320032?replies=16&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/320032?replies=16&#60;/a&#62;&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>cognitions on "How to exclude a page from navigation by title or slug"</title>
<link>http://wordpress.org/support/topic/334575#post-1291309</link>
<pubDate>Mon, 23 Nov 2009 19:03:10 +0000</pubDate>
<dc:creator>cognitions</dc:creator>
<guid isPermaLink="false">1291309@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thank you!&#60;/p&#62;
&#60;p&#62;For others seeking this solution (provided by MichaelH):-&#60;/p&#62;
&#60;p&#62;The code for excluding pages when you know the Title but not the ID. The following is an example excluding three pages from the menu.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
$page1 = get_page_by_title (&#38;#39;About&#38;#39;);
$page2 = get_page_by_title (&#38;#39;Services&#38;#39;);
$page3 = get_page_by_title (&#38;#39;Privacy Policy&#38;#39;);

wp_list_pages(&#38;#39;exclude=&#38;#39; . $page1-&#38;gt;ID . &#38;#39;,&#38;#39; . $page2-&#38;gt;ID . &#38;#39;,&#38;#39; . $page3-&#38;gt;ID);
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>MichaelH on "How to exclude a page from navigation by title or slug"</title>
<link>http://wordpress.org/support/topic/334575#post-1291287</link>
<pubDate>Mon, 23 Nov 2009 18:43:33 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1291287@http://wordpress.org/support/</guid>
<description>&#60;pre&#62;&#60;code&#62;$args = &#38;#39;exclude=&#38;#39; . $page1-&#38;gt;ID . &#38;#39;,&#38;#39; . $page2-&#38;gt;ID . &#38;#39;,&#38;#39; . $page3-&#38;gt;ID
wp_list_pages($args);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>cognitions on "How to exclude a page from navigation by title or slug"</title>
<link>http://wordpress.org/support/topic/334575#post-1291114</link>
<pubDate>Mon, 23 Nov 2009 16:12:41 +0000</pubDate>
<dc:creator>cognitions</dc:creator>
<guid isPermaLink="false">1291114@http://wordpress.org/support/</guid>
<description>&#60;p&#62;OK. I have got the values individually like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$page1 = get_page_by_title (&#38;#39;About&#38;#39;);
$page2 = get_page_by_title (&#38;#39;Services&#38;#39;);
$page2 = get_page_by_title (&#38;#39;Privacy&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and they all work. For example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;wp_list_pages(&#38;#39;exclude=&#38;#39;.$page1-&#38;gt;ID);
wp_list_pages(&#38;#39;exclude=&#38;#39;.$page2-&#38;gt;ID);
wp_list_pages(&#38;#39;exclude=&#38;#39;.$page3-&#38;gt;ID);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But I cannot seem to combine them so that a single instance of  wp_list_pages excludes all of them. &#60;/p&#62;
&#60;p&#62;I know this is no where near right, but the result I am seeking is:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;wp_list_pages(&#38;#39;exclude=&#38;#39;.$page1-&#38;gt;ID, .$page2-&#38;gt;ID, .$page3-&#38;gt;ID);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Thanks for your help so far. Sorry not to have figured this.
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "How to exclude a page from navigation by title or slug"</title>
<link>http://wordpress.org/support/topic/334575#post-1290965</link>
<pubDate>Mon, 23 Nov 2009 14:01:23 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1290965@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You'd have to get each value individually.
&#60;/p&#62;</description>
</item>
<item>
<title>cognitions on "How to exclude a page from navigation by title or slug"</title>
<link>http://wordpress.org/support/topic/334575#post-1290803</link>
<pubDate>Mon, 23 Nov 2009 08:22:51 +0000</pubDate>
<dc:creator>cognitions</dc:creator>
<guid isPermaLink="false">1290803@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thankyou. It works, but I forgot to mention that there is more than one page to exclude.&#60;/p&#62;
&#60;p&#62;I have studied the codex to see how to put them in an array but no luck.&#60;/p&#62;
&#60;p&#62;So far I have this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$page = get_page_by_title (array(
&#38;#39;About&#38;#39;),
(&#38;#39;Privacy&#38;#39;),
(&#38;#39;Disclaimer&#38;#39;)
));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But it only excludes the first page 'About'.&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "How to exclude a page from navigation by title or slug"</title>
<link>http://wordpress.org/support/topic/334575#post-1290573</link>
<pubDate>Mon, 23 Nov 2009 02:28:21 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1290573@http://wordpress.org/support/</guid>
<description>&#60;pre&#62;&#60;code&#62;$page = get_page_by_title(&#38;#39;About&#38;#39;);
wp_list_pages(&#38;#39;exclude=&#38;#39;.$page-&#38;gt;ID);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>cognitions on "How to exclude a page from navigation by title or slug"</title>
<link>http://wordpress.org/support/topic/334575#post-1290570</link>
<pubDate>Mon, 23 Nov 2009 02:22:02 +0000</pubDate>
<dc:creator>cognitions</dc:creator>
<guid isPermaLink="false">1290570@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is there a way to exclude a page from wp_list_pages by Page Title or Page Slug. I cannot know the ID in advance so i cannot use&#60;/p&#62;
&#60;p&#62;wp_list_pages('exclude=3')&#60;/p&#62;
&#60;p&#62;I am trying to get this to work:&#60;/p&#62;
&#60;p&#62;wp_list_pages(get_page_link(get_page_by_title('Publish Post')-&#38;gt;ID))&#60;/p&#62;
&#60;p&#62;but I cannot.&#60;/p&#62;
&#60;p&#62;Many thanks
&#60;/p&#62;</description>
</item>
<item>
<title>nathan12343 on "Excluding pages if there is a particular custom field"</title>
<link>http://wordpress.org/support/topic/332865#post-1285897</link>
<pubDate>Wed, 18 Nov 2009 19:10:53 +0000</pubDate>
<dc:creator>nathan12343</dc:creator>
<guid isPermaLink="false">1285897@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Why doesn't this work???? I've got pages with a custom field of &#34;notmobile&#34; and a value of &#34;notmobile&#34;. These are the only ones that use this field. And this is the only time this value will appear.&#60;/p&#62;
&#60;p&#62;This is the code I'm using: &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
$menulist = get_children(&#38;#39;meta_compare=!=&#38;amp;meta_value=notmobile&#38;amp;post_type=page&#38;amp;orderby=menu_order&#38;amp;order=ASC&#38;amp;post_parent=&#38;#39;.$post-&#38;gt;ID);
       if(is_array($menulist) &#38;amp;&#38;amp; count($menulist) &#38;gt; 0) :?&#38;gt;
	   &#38;lt;ul id=&#38;quot;relative&#38;quot;&#38;gt;&#38;lt;?php foreach ($menulist as $post) : ?&#38;gt;
        &#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
 &#38;lt;?php endforeach; ?&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;?php else : ?&#38;gt;
&#38;lt;!-- no children --&#38;gt;
&#38;lt;?php endif; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If I remove meta_compare=!= then only the two menu items that have a value of &#34;notmobile&#34; appear. Why can't I get it to exclude them?&#60;/p&#62;
&#60;p&#62;Any help would be really, really appreciated!
&#60;/p&#62;</description>
</item>
<item>
<title>nathan12343 on "Excluding pages if there is a particular custom field"</title>
<link>http://wordpress.org/support/topic/332865#post-1285438</link>
<pubDate>Wed, 18 Nov 2009 10:39:06 +0000</pubDate>
<dc:creator>nathan12343</dc:creator>
<guid isPermaLink="false">1285438@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've been trying out other stuff, and it's just not working because of a conflict with another function. But it seems to me that all I really need to do is hide it from the menu.&#60;/p&#62;
&#60;p&#62;So, is there a way that I can exlude a page from wp_list_pages because of a tag or a custom field?
&#60;/p&#62;</description>
</item>
<item>
<title>nathan12343 on "Excluding pages if there is a particular custom field"</title>
<link>http://wordpress.org/support/topic/332865#post-1284901</link>
<pubDate>Tue, 17 Nov 2009 22:00:54 +0000</pubDate>
<dc:creator>nathan12343</dc:creator>
<guid isPermaLink="false">1284901@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've got a site where different content will be shown if you are looking at it through a desktop or a phone/PDA etc. There are different template files for each.&#60;/p&#62;
&#60;p&#62;I have been trying to &#60;strong&#62;exclude&#60;/strong&#62; certain pages from the mobile version if it has a custom field (e.g. key=for mobile value=no). I wanted to do this in the loop through wp_query() because there is a menu generation in the page that needs to exlude these pages too.&#60;/p&#62;
&#60;p&#62;I can see how to do this inclusively, but I've hit a bit of a wall and could do with a helping hand! (I could easily be pursuaded to do the same through a tag (e.g. notMobile) if it is easier.)&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>jdingman on "How to Exclude Pages in Popularity Contest?"</title>
<link>http://wordpress.org/support/topic/322475#post-1264042</link>
<pubDate>Fri, 30 Oct 2009 03:22:23 +0000</pubDate>
<dc:creator>jdingman</dc:creator>
<guid isPermaLink="false">1264042@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Any update on this?  I'm still trying to figure it out.&#60;/p&#62;
&#60;p&#62;Anyone know specifically how to exclude pages from Popularity Contest?
&#60;/p&#62;</description>
</item>
<item>
<title>Kejatz on "How to Exclude Pages in Popularity Contest?"</title>
<link>http://wordpress.org/support/topic/322475#post-1253166</link>
<pubDate>Tue, 20 Oct 2009 20:17:26 +0000</pubDate>
<dc:creator>Kejatz</dc:creator>
<guid isPermaLink="false">1253166@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks for the answer but I have no idea how to do that.&#60;/p&#62;
&#60;p&#62;I already have a plugin that executes php in widget and I'm already using the above code in a text widget. I just need info on how to ignore posts with a post_type of 'page', like you said.
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "How to Exclude Pages in Popularity Contest?"</title>
<link>http://wordpress.org/support/topic/322475#post-1251446</link>
<pubDate>Mon, 19 Oct 2009 14:01:17 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1251446@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You'd probably have to modify the &#60;code&#62;get_top_rated_posts&#60;/code&#62; function in that plugin to ignore posts with a post_type of 'page'.&#60;/p&#62;
&#60;p&#62;Also to execute PHP in a Widget, consider downloading and installing &#60;a href=&#34;http://wordpress.org/extend/plugins/php-code-widget/&#34;&#62;Otto's PHP Code Widget&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>Kejatz on "How to Exclude Pages in Popularity Contest?"</title>
<link>http://wordpress.org/support/topic/322475#post-1251123</link>
<pubDate>Mon, 19 Oct 2009 03:38:49 +0000</pubDate>
<dc:creator>Kejatz</dc:creator>
<guid isPermaLink="false">1251123@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm using the latest popularity contest plugin. I want to display 10 most popular posts (pages excluded) in a normal text widget.&#60;/p&#62;
&#60;p&#62;I have no knowledge of PHP, but I found this code to b working but it does not exclude pages.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if (function_exists(&#38;#39;akpc_most_popular&#38;#39;)) { ?&#38;gt;
&#38;lt;ul&#38;gt;
&#38;lt;?php akpc_most_popular(); ?&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;PS. I don't mind having popularity rating on pages I just don't want them displayed with most popular posts in my text widget.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>aaron_guitar on "[Plugin: Exclude Pages] Quick Edit"</title>
<link>http://wordpress.org/support/topic/320248#post-1243798</link>
<pubDate>Mon, 12 Oct 2009 14:53:10 +0000</pubDate>
<dc:creator>aaron_guitar</dc:creator>
<guid isPermaLink="false">1243798@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Have you considered adding a field to the Quick Edit interface for excluding the pages?  This would speed up things a lot especially if you need to exclude a lot of different pages.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/exclude-pages/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/exclude-pages/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>steve49589 on "[Plugin: Exclude Pages] Help - Duplicate "exclude_page" custom fields"</title>
<link>http://wordpress.org/support/topic/265770#post-1243135</link>
<pubDate>Sun, 11 Oct 2009 22:28:08 +0000</pubDate>
<dc:creator>steve49589</dc:creator>
<guid isPermaLink="false">1243135@http://wordpress.org/support/</guid>
<description>&#60;p&#62;The conflict is between a plug in called Hide Pages (http://www.instinct.co.nz/hide-pages-plugin/) and a plug in called Exclude Pages (http://wordpress.org/extend/plugins/exclude-pages/).&#60;/p&#62;
&#60;p&#62;They both use the same exclude_page reference in the code. Ensure you are only using one of them.
&#60;/p&#62;</description>
</item>
<item>
<title>steve49589 on "[Plugin: Exclude Pages] Help - Duplicate "exclude_page" custom fields"</title>
<link>http://wordpress.org/support/topic/265770#post-1243129</link>
<pubDate>Sun, 11 Oct 2009 22:24:05 +0000</pubDate>
<dc:creator>steve49589</dc:creator>
<guid isPermaLink="false">1243129@http://wordpress.org/support/</guid>
<description>&#60;p&#62;There is a plug in conflict. I thought I had updated this thread, but I did not. Hang on, let me check my e-mail.
&#60;/p&#62;</description>
</item>
<item>
<title>mackaaij on "[Plugin: Exclude Pages] Help - Duplicate "exclude_page" custom fields"</title>
<link>http://wordpress.org/support/topic/265770#post-1242226</link>
<pubDate>Sat, 10 Oct 2009 22:40:31 +0000</pubDate>
<dc:creator>mackaaij</dc:creator>
<guid isPermaLink="false">1242226@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I decided in favor of my first option. After removing the plugin I deleted all the custom fields entries from the database (to clean up) using this SQL statement:&#60;/p&#62;
&#60;p&#62;delete FROM &#38;lt;dbname&#38;gt;_postmeta WHERE meta_key = 'exclude_page'&#60;/p&#62;
&#60;p&#62;(please note the meta_key is indeed 'exclude_page' and not 'exclude_pages' as mentioned above)
&#60;/p&#62;</description>
</item>
<item>
<title>mackaaij on "[Plugin: Exclude Pages] Help - Duplicate "exclude_page" custom fields"</title>
<link>http://wordpress.org/support/topic/265770#post-1242171</link>
<pubDate>Sat, 10 Oct 2009 21:26:03 +0000</pubDate>
<dc:creator>mackaaij</dc:creator>
<guid isPermaLink="false">1242171@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I came here for the same problem and since there is no movement on this topic I figured two options:&#60;br /&#62;
1. Don't use a plugin and build your own &#34;page&#34; menu as a widget and manually add the pages you do wish to show.&#60;br /&#62;
2. Try this plugin: &#60;a href=&#34;http://wordpress.org/extend/plugins/exclude-pages/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/exclude-pages/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>lukescammell on "[Plugin: Exclude Pages] error: first parameter expected to be a reference"</title>
<link>http://wordpress.org/support/topic/307430#post-1207679</link>
<pubDate>Fri, 11 Sep 2009 05:19:58 +0000</pubDate>
<dc:creator>lukescammell</dc:creator>
<guid isPermaLink="false">1207679@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I can confirm this worked for me as well - thanks prasadvemala!&#60;/p&#62;
&#60;p&#62;I changed line 37 from:&#60;br /&#62;
&#60;code&#62;function ep_exclude_pages( &#38;amp; $pages )&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to:&#60;br /&#62;
&#60;code&#62;function ep_exclude_pages( $pages )&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>prasadvemala on "[Plugin: Exclude Pages] error: first parameter expected to be a reference"</title>
<link>http://wordpress.org/support/topic/307430#post-1206765</link>
<pubDate>Thu, 10 Sep 2009 15:18:33 +0000</pubDate>
<dc:creator>prasadvemala</dc:creator>
<guid isPermaLink="false">1206765@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Removing &#38;amp; from the parameter of the function ep_exclude_pages in exclude_pages.php worked for me. I know its strange, but worked. &#60;/p&#62;
&#60;p&#62;Try your luck
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "[Plugin: Exclude Pages] List only the excluded pages"</title>
<link>http://wordpress.org/support/topic/307539#post-1199149</link>
<pubDate>Fri, 04 Sep 2009 13:08:30 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1199149@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Have you considered using the include=x parameter with &#60;a href=&#34;http://codex.wordpress.org/Template_Tags&#34;&#62;template tag&#60;/a&#62;, &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_list_pages&#34;&#62;wp_list_pages()&#60;/a&#62;?&#60;/p&#62;
&#60;p&#62;If that won't work, you may need to use &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_pages&#34;&#62;get_pages&#60;/a&#62; and test on the menu_order field.
&#60;/p&#62;</description>
</item>
<item>
<title>bdiddymc on "[Plugin: Exclude Pages] List only the excluded pages"</title>
<link>http://wordpress.org/support/topic/307539#post-1198869</link>
<pubDate>Fri, 04 Sep 2009 06:18:30 +0000</pubDate>
<dc:creator>bdiddymc</dc:creator>
<guid isPermaLink="false">1198869@http://wordpress.org/support/</guid>
<description>&#60;p&#62;For a spin I am wanting to list the excluded pages.&#60;/p&#62;
&#60;p&#62;so if I could do a wp_list_pages(), and filter out the menu pages...&#60;/p&#62;
&#60;p&#62;Thoughts?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/exclude-pages/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/exclude-pages/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>sillybean on "[Plugin: Exclude Pages] error: first parameter expected to be a reference"</title>
<link>http://wordpress.org/support/topic/307430#post-1198594</link>
<pubDate>Thu, 03 Sep 2009 22:52:55 +0000</pubDate>
<dc:creator>sillybean</dc:creator>
<guid isPermaLink="false">1198594@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I use this plugin on several sites, and it's been great. However, I just moved one of them to a Windows server (running Apache). Before I shut off PHP errors entirely, I got this:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
Warning: Parameter 1 to ep_exclude_pages() expected to be a reference, value given in D:\Web\SLC\wp-includes\plugin.php on line 166&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;The plugin activates but doesn't work, and it kills the page list functions.&#60;/p&#62;
&#60;p&#62;Any ideas?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/exclude-pages/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/exclude-pages/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Cyber MatriX on "[Plugin: Exclude Pages] Page Order Not Working"</title>
<link>http://wordpress.org/support/topic/303628#post-1185076</link>
<pubDate>Sun, 23 Aug 2009 16:17:32 +0000</pubDate>
<dc:creator>Cyber MatriX</dc:creator>
<guid isPermaLink="false">1185076@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have my page order set to alphabetically and this in the my header &#38;lt;?php wp_list_pages('sort_column=post_title'); ?&#38;gt; and they are not show in correct order.  Any suggestions?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/exclude-pages/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/exclude-pages/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>newtrouble on "Excluding pages from nav menu"</title>
<link>http://wordpress.org/support/topic/294593#post-1183928</link>
<pubDate>Sat, 22 Aug 2009 06:23:07 +0000</pubDate>
<dc:creator>newtrouble</dc:creator>
<guid isPermaLink="false">1183928@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I made another page my static home page - and it shows up on all navigation bars twice - as the home page and the static page. Any help on excluding or hiding one or the other? There is no page id assigned to it as it's the home page.&#60;/p&#62;
&#60;p&#62;Thanks for any help.
&#60;/p&#62;</description>
</item>
<item>
<title>bearing on "Excluding pages from nav menu"</title>
<link>http://wordpress.org/support/topic/294593#post-1156386</link>
<pubDate>Thu, 30 Jul 2009 08:46:25 +0000</pubDate>
<dc:creator>bearing</dc:creator>
<guid isPermaLink="false">1156386@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks and it does indeed work.
&#60;/p&#62;</description>
</item>
<item>
<title>samboll on "Excluding pages from nav menu"</title>
<link>http://wordpress.org/support/topic/294593#post-1153926</link>
<pubDate>Tue, 28 Jul 2009 13:23:57 +0000</pubDate>
<dc:creator>samboll</dc:creator>
<guid isPermaLink="false">1153926@http://wordpress.org/support/</guid>
<description>&#60;p&#62;yes - that will work
&#60;/p&#62;</description>
</item>
<item>
<title>bearing on "Excluding pages from nav menu"</title>
<link>http://wordpress.org/support/topic/294593#post-1153905</link>
<pubDate>Tue, 28 Jul 2009 12:59:19 +0000</pubDate>
<dc:creator>bearing</dc:creator>
<guid isPermaLink="false">1153905@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Just had a quick look, I have this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php wp_list_pages(&#38;#39;title_li=&#38;amp;parent=0&#38;amp;&#38;#39;); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;should I change this to&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php wp_list_pages(&#38;#39;title_li=&#38;amp;parent=0&#38;amp;exclude=xx&#38;#39;); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;xx being the page id.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
