Site logo

Archived topic

Change text

1 reply · Started by ana on June 10, 2022

Viewing posts 1–2 of 2

Hello,
I want to change the response to the user when they send a comment in a post (is held for moderation), where can i do that?

Thanks

Hi there,

that text is actually set in WordPress, you can use this PHP Snippet to change that string to Your new text:

add_filter( 'gettext', function( $text ) {
    if ( 'Your comment is awaiting moderation.' === $text ) {
        $text = 'Your new text';
    }

    return $text;
} );

This doc explains adding PHP:

https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.