Skip to content

Instantly share code, notes, and snippets.

@bhubbard
Created October 21, 2014 22:21
Show Gist options
  • Save bhubbard/f2d271165bebbc1e6ead to your computer and use it in GitHub Desktop.
Save bhubbard/f2d271165bebbc1e6ead to your computer and use it in GitHub Desktop.
Change Related Posts Header for Properties CPT
################################################################################
// 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