I have enabled a very recent WP template named "appliance." Everything works well, except all the important navigation links are at the bottom of each page. At first I thought no big deal, I'll figure it out in one of the the template editors, but so far had no luck. Would be very grateful for some advice.
just move it in your index.php template. Find the code in the file and move it above the content section. Find this: <div id="postnavigation"> <div id="previousposts"><?php next_posts_link( __( 'Previous Entries', 'appliance' ) ); ?></div> <div id="nextposts"><?php previous_posts_link( __( 'Next Entries', 'appliance' ) ); ?></div> </div> Code (markup): and move it above this: <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> Code (markup): there also was a divider above the postnavi, I would put it under it after you move it. <div class="divider"></div> Code (markup):
You need to look at the code in the header.php and footer.php files of the appliance theme. Look for the <?php wp_nav_menu( array( 'theme_location' => 'footer-menu', 'depth' => '1' ) ); ?> Code (markup): in the footer and place that in the header.php and the WordPress pages will appear on top. For the other links also look in the footer.php. The easiest way to find out what the code is doing is to delete something, upload it and see what disappears. You'll also want to learn some basic PHP and read up on WordPress Theme Development.
-------------------------------------- Thanks so much Indy! I made the changes and IT WORKED!!! I really appreciate your help. However I've got one small problem. The "search by category" link doesn't seem to comply. For example I have several dozen posts under "videos" but the "next" and "previous" links aren't showing top or bottom, and I'm getting a hint of a divider running along the bottom posts. The default is currently set at "show 8 posts." Any ideas? TIA
Thanks so much Indy! I made the changes and IT WORKED!!! I really appreciate your help. However I've got one small problem. The "search by category" link doesn't seem to comply. For example I have several dozen posts under "videos" but the "next" and "previous" links aren't showing top or bottom, and I'm getting a hint of a divider running along the bottom posts. The default is currently set at "show 8 posts." Any ideas? TIA Oh, and I forgot to mention that when a link is clicked (ie: photo or text on main page that shows group of 8), it would be nice to see "previous [name] post" at top of page also, perhaps with a "back" link on the opposite side of that new page that's being viewed. I know I'm asking a lot but, but I think you're one of the few that really does know WP and of course I would greatly appreciate your help. Thanks
Thanks ArchAxis! I managed to move the links up to the top of the page by editing the index.php but my "search by category" section doesn't seem to show any links, top or bottom. Any ideas? TIA
Just find out which .php file controls the search by category page and add <div id="postnavigation"> <div id="previousposts"><?php next_posts_link( __( 'Previous Entries', 'appliance' ) ); ?></div> <div id="nextposts"><?php previous_posts_link( __( 'Next Entries', 'appliance' ) ); ?></div> </div> Code (markup): to it but know that the loop might not be loaded on the search by category page so next and previous won't show up even if you add the code since there is no supporting content to make the post navigation appear. To find out the which template page controls the search by category page simply add an <h1>Test!</h1> Code (markup): to the page and refresh the category page until you see the <h1> appear.