Created
February 17, 2014 02:23
-
-
Save wpspeak/9043651 to your computer and use it in GitHub Desktop.
Change the Reply Text Link on WordPress Comment
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
<?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