wordpresstr
Administrator
- 125
- 13 Kas 2020
Aşağıdaki kodu temanızın functions.php dosyasına eklemeniz gerekir.
Koddaki 'Change to This Text'i kullanmak istediğiniz metinle değiştirmeyi unutmayın .
1 2 3 4 5 | 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' ); |
Koddaki 'Change to This Text'i kullanmak istediğiniz metinle değiştirmeyi unutmayın .