Created
October 21, 2014 22:21
-
-
Save bhubbard/f2d271165bebbc1e6ead to your computer and use it in GitHub Desktop.
Change Related Posts Header for Properties CPT
This file contains hidden or 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
################################################################################ | |
// Change Related Posts Header for Properties CPT | |
################################################################################ | |
function jetpackme_related_posts_headline( $headline ) { | |
if ( is_singular( 'properties' ) ) { | |
$headline = sprintf( | |
'<h3 class="jp-relatedposts-headline"><em>%s</em></h3>', | |
esc_html( 'Similar Listings' ) | |
); | |
return $headline; | |
} | |
} | |
add_filter( 'jetpack_relatedposts_filter_headline', 'jetpackme_related_posts_headline' ); | |
// Remove Context for Related Posts | |
add_filter( 'jetpack_relatedposts_filter_post_context', '__return_empty_string' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment