Last active
June 2, 2016 19:35
-
-
Save bpmore/6ac84591871cd3372a924fa825f1d352 to your computer and use it in GitHub Desktop.
Display Parent and Child Page Titles on Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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