• We can easily moderate all new questions. But is there a way to moderate new comments? I thought maybe it was using the WordPress built in system for comments, but that doesn’t seem to be the case. I have the WordPress comments settings to be manually approved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author DesignWall

    (@designwall)

    Hi,
    Thanks for contacting us and sorry for our late reply.

    You need to add the code:

    add_filter( ‘dwqa_insert_comment_args’, ‘dwqa_theme_moderate_comment’ );
    function dwqa_theme_moderate_comment( $args ) {
    $args[‘comment_approved’] = 0;

    return $args;
    }

    Into your theme folder:
    wp-content/themes/theme-folder/functions.php

    javadth

    (@javadth)

    i added this but nothing happened

    guest can put comment without approv

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Any way to moderate comments?’ is closed to new replies.