This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.
Place this code in custom_functions.php
:
function custom_comment_reply($content) { $content = str_replace('Reply', 'Reply to this comment', $content); return $content; } add_filter('comment_reply_link', 'custom_comment_reply');
(You can change Reply to this comment to be the specific text you want to use for each reply link.)