Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created February 17, 2014 02:23
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 wpspeak/9043651 to your computer and use it in GitHub Desktop.
Save wpspeak/9043651 to your computer and use it in GitHub Desktop.
Change the Reply Text Link on WordPress Comment
<?php
// Modify the Reply link
function afn_custom_comment_reply($link) {
$link = str_replace('Reply', 'Reply to this comment', $link);
return $link;
}
add_filter('comment_reply_link', 'afn_custom_comment_reply');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment