Home › Forums › Pro Support › Translation › Reply To: Translation
June 9, 2019 at 11:12 am
#9809
Keymaster
Hi there,
Are you not seeing it in your language here?: https://translate.wordpress.org/projects/wp-plugins/wp-show-posts/
If you want to do it manually, try this function:
add_filter( 'gettext', function( $text ) {
if ( 'Leave a comment' === $text ) {
$text = 'Your custom text';
}
return $text;
} );