Hi, I would like to create a new page in Wordpress but don't want it to appear in my pages list that is visible on the site. Is there a way to do this? Thanks in advance
Yeah that is one option but its a lot of hassle I will have a look for a plugin which will do this. If anyone does know of one please let me know Thanks
Unfortunately, I have yet to see or hear of a plugin that will do that, I have always had to do it the old fashioned way and edit the template, its pretty easy.
Yeah, it's not really a hassle unless you have tons of pages. But if you have so many pages that its a hassle, you need to think about your linking structure
Yeah that's pretty easy, I do it for all my blogs. You have to think the other way around, just assign the pages that you want to have displayed instead of the pages that you don't want to have displayed. Find this (or something alike) in your theme, probably your main index php <?php wp_list_pages('sort_column=menu_order&depth=1&title_li=');?> Change this into the page numbers that you want, works like a charm. <?php wp_list_pages('include= 87,88, 70, 72&depth=1&title_li='); ?>
I believe this plugin may do what you need. I know a client of mine uses it successfully: http://geekyweekly.com/mypageorder
To exclude a page use: <?php wp_list_pages('exclude=1' ); ?> Code (markup): where '1' is the id number of the page (found in admin panel, Manage => Categories).