1 I have individual Wordpress pages each setup different from the other and I want to have a link to those pages in the main navigation. How can I place the link to those individual pages on the navigation?
If you want to have navigation menu for link to the other. Try this! Edit the file name "header.php" (backup before start) it in your theme folder, then find Div menu sometime like this <div id="menu"> <ul> <li><a href="<?php echo get_option('home'); ?>/">Home</a></li> <?php wp_list_pages('title_li=&depth=1' ); ?> </ul> </div> Include your link <li><a href="http://yourlinktarget.com">Name of your link</a></li> it become <div id="menu"> <ul> <li><a href="<?php echo get_option('home'); ?>/">Home</a></li> <?php wp_list_pages('title_li=&depth=1' ); ?> <li><a href="http://yourlinktarget.com">Name of link</a></li> </ul> </div>