samedi 12 novembre 2016

How to Change the “Reply” Text in WordPress Comments



Recently, one of our users asked us how to change the ‘Reply’ text in WordPress comments. By default, most WordPress sites have a reply button below comments so that users can respond to a comment. In this article, we will show you how to easily change the “Reply” text in WordPress comments.


Changing reply text in WordPress comments


Why Change The Reply Text in WordPress Comments?


Comments are an easy way to boost user engagement. There is a lot you can do to improve WordPress comments.


For example, you can style your comment layout, change comment form style, comment text field to bottom, etc.


The reply link below a comment is like a call to action. Just like any other call for actions on your website, language, colors, size, and placement can all compel users to click.


By changing the simple boring reply to something more interesting, you can make it more prominent and attractive.


Let’s see how to easily change ‘Reply’ text in WordPress comments.


Changing ‘Reply’ Text in WordPress Comments


For this tutorial, you will need to add some code to your WordPress files. If you have not done it before, then you may want to take a look at our beginner’s guide to pasting snippets from the web into WordPress.


You need to add the following code to your theme’s functions.php file or in a site-specific plugin.


 
function wpb_comment_reply_text( $link ) {
$link = str_replace( 'Reply', 'Change to This Text', $link );
return $link;
}
add_filter( 'comment_reply_link', 'wpb_comment_reply_text' );


Don’t forget to replace ‘Change to This Text’ in the code with whatever text you want to use.


Preview of reply text changed to respond


That’s all, you can now view any post with comments on your website, and you will find the text you added instead of ‘Reply’.


We hope this article helped you change the “Reply” Text in WordPress. You may also want to try these 11 ways to get more comments on your WordPress blog posts.


If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.


The post How to Change the “Reply” Text in WordPress Comments appeared first on WPBeginner.







Aucun commentaire:

Enregistrer un commentaire