Skip to content

Instantly share code, notes, and snippets.

@cowgill
Last active May 1, 2018 01:53
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 cowgill/abb2fcb34d8248a75887f17825fd4b21 to your computer and use it in GitHub Desktop.
Save cowgill/abb2fcb34d8248a75887f17825fd4b21 to your computer and use it in GitHub Desktop.
Highlight the Current Page In WordPress Using CSS
<div class="leftsidebar">
<ul>
<li <?php if( is_home() ) { echo 'class="current_page_item"'; } ?>>
<a href="/wordpress/">Home</a></li>
<?php wp_list_pages( 'title_li=&depth=1' );?>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment