Skip to content

Instantly share code, notes, and snippets.

@chaselivingston
Created November 19, 2015 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chaselivingston/6a44ef979c0f7f4728ea to your computer and use it in GitHub Desktop.
Save chaselivingston/6a44ef979c0f7f4728ea to your computer and use it in GitHub Desktop.
function jetpackme_related_posts_headline( $headline ) {
$headline = sprintf(
'<h3 class="jp-relatedposts-headline"><em>%s</em></h3>',
esc_html( 'You Might Also Like:' )
);
return $headline;
}
add_filter( 'jetpack_relatedposts_filter_headline', 'jetpackme_related_posts_headline' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment