Skip to content

Instantly share code, notes, and snippets.

@shemul49rmc
Created October 28, 2013 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shemul49rmc/7195403 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7195403 to your computer and use it in GitHub Desktop.
Add the top navigation menu
/* Add the top navigation menu */
/* Links need to be manually added here, change the link to your own page. This menu isn't supported by Thesis */
function topnav_menu() {
?>
<ul id="topnav">
<li><a href="http://iamshemul.com/">Home</a></li> |
<li><a href="http://iamshemul.com/about-iamshemul-com/">About</a></li> |
<li><a href="http://howto.medinfo24.com/archives/">Archives</a></li> |
<li><a href="http://iamshemul.com/contact/">Contact</a></li> |
<li><a href="http://iamshemul.com/contact/">Sitemap XML</a></li>
</ul>
<?php
}
add_action('thesis_hook_before_header', 'topnav_menu');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment