Skip to content

Instantly share code, notes, and snippets.

@bpmore
Last active June 2, 2016 19:35
Show Gist options
  • Save bpmore/6ac84591871cd3372a924fa825f1d352 to your computer and use it in GitHub Desktop.
Save bpmore/6ac84591871cd3372a924fa825f1d352 to your computer and use it in GitHub Desktop.
Display Parent and Child Page Titles on Page
//* Display Parent and Child Page Titles on Page
add_filter( 'genesis_post_title_output', 'lit_post_title_output', 15 );
function lit_post_title_output( $title ) {
global $post;
if ( is_page() && $post->post_parent > 0 ) {
$parent_title = get_the_title( $post->post_parent );
$page_title = get_the_title();
$title = sprintf( '<h1 class="parent-title">%s</h1><h2 class="entry-title">%s</h2>', $parent_title, $page_title );
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment