How To Add More Links Below TwentyTen Header Image
-
Hello. Just yesterday I installed WordPress 3.0.4 on our EPN server. Once I installed the “Disable Canonical URL Redirection” plug-in, everything is now working great for the most part.
I am currently tweaking the default TwentyTen theme a bit. I would like to add two additional links right next to the “Home” and “About” links that are located below TwentyTen’s header image. These links will not go to other pages created with WordPress; rather, one will go to an external HTML doc which is the home page for our main site. The other link will go to a “Contact Us” cgi script that is in our cgi-bin. I want these two new links to appear on all pages, along with the “Home” and “About” links.
I have looked at a few other threads here, but still haven’t quite figured out how to implement this simple feature. I’ve also looked at some of the PHP files, and suspect that I need to add the links in TwentyTen’s “header.php” file, in this section:
—–
`<div id=”access” role=”navigation”>
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
<div class=”skip-link screen-reader-text”><a href=”#content” title=”<?php esc_attr_e( ‘Skip to content’, ‘twentyten’ ); ?>”><?php _e( ‘Skip to content’, ‘twentyten’ ); ?></a></div>
<?php /* Our navigation menu. If one isn’t filled out, wp_nav_menu falls back to wp_page_menu. The menu assigned to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
<?php wp_nav_menu( array( ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’ ) ); ?>
</div><!– #access –>
</div><!– #masthead –>
</div><!– #header –>`—–
Undoubtedly, it is a simple thing to implement, but I am a total newbie to WordPress, and pretty much to PHP as well, so any assistance would be greatly appreciated.
Thank-you very much!
- The topic ‘How To Add More Links Below TwentyTen Header Image’ is closed to new replies.