You can exclude the pages you don’t want in your navigation…Here is an example code
<ul>
<?php
wp_list_pages('exclude=17,38' ); ?>
</ul>
You should add it in your header.php. That info can be found on this page http://codex.wordpress.org/Template_Tags/wp_list_pages
I think there’s also a plugin for this.
Hmm, i put that in the header.php file but it still appears. something im probably doing wrong
About creating new page: I cannot find the “publish” and “save” buttons. Instead i can see this->
//<!-- edCanvas = document.getElementById('content'); // If tinyMCE is defined. if ( typeof tinyMCE != 'undefined' ) { // This code is meant to allow tabbing from Title to Post (TinyMCE). if ( tinyMCE.isMSIE ) { document.getElementById('title').onkeydown = function (e) { e = e ? e : window.event; if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) { var i = tinyMCE.getInstanceById('content'); if(typeof i == 'undefined') return true; tinyMCE.execCommand("mceStartTyping"); this.blur(); i.contentWindow.focus(); e.returnValue = false; return false; } } } else { document.getElementById('title').onkeypress = function (e) { e = e ? e : window.event; if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) { var i = tinyMCE.getInstanceById('
what does this mean?