Created
November 19, 2015 17:46
-
-
Save chaselivingston/6a44ef979c0f7f4728ea to your computer and use it in GitHub Desktop.
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
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