Skip to content

Instantly share code, notes, and snippets.

@ninetwentyfour
Created August 28, 2011 15:55
Show Gist options
  • Save ninetwentyfour/1176823 to your computer and use it in GitHub Desktop.
Save ninetwentyfour/1176823 to your computer and use it in GitHub Desktop.
Creating Navigation Highlights - blogpost
<ul>
<li<?php if ( is_page('about') || is_404() ){ echo ' class="current_page_item" ';}?>><a href="<?php echo get_option('home'); ?>/">Home</a></li>
<li<?php if ( is_home() || is_page('blog')|| is_single() || is_search() || is_archive()) { echo ' class="current_page_item"'; } ?>><a href="<?php bloginfo('url'); ?>/blog/">Blog</a></li>
<li<?php if ( is_page('work') || is_page('video') || is_page('web')) { echo ' class="current_page_item"'; } ?>><a href="<?php bloginfo('url'); ?>/work/">Work</a></li>
<li<?php if ( is_page('contact')) { echo ' class="current_page_item"'; } ?>><a href="<?php bloginfo('url'); ?>/contact/">Contact</a></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment