Highlight Parent and Child pages
-
Trying to have both the parent and child page highlighted when viewing a child page. The child page highlights but the parent page does not. Anything I need to tweak with this?
<?php //highlight 'Home' if not Page if ( is_page()) { $highlight = "page_item"; } elseif ( is_page() && $post->post_parent ) { $highlight = "page_item current_page_item current_page_parent"; } else { $highlight = "page_item current_page_item"; } ?>
Thanks in advance!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Highlight Parent and Child pages’ is closed to new replies.