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!