Created
June 2, 2016 21:17
-
-
Save bpmore/6c2bcfeaf3c74cf8bb46b119b4ce499c to your computer and use it in GitHub Desktop.
broken
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 ) { | |
if( is_page( array( 'northwest', 'west', 'south-central' ))) { | |
$parent_title = get_the_title(); | |
$page_title = get_the_title(); | |
$title = sprintf( '<h1 class="parent-title">%s</h1>', $parent_title, $page_title ); | |
} else { 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