• Resolved newwper3

    (@newwper3)


    Hi,

    I allow visitors to attach pictures,
    for security reasons, I would like to moderate the comments with image attachment.
    Is it possible to moderate the comment if visitors attach a media?

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Support gVectors Support

    (@gvectorssupport)

    Hello,

    You can use the following code:v

    add_filter('pre_comment_approved', function($approved){
        if(!current_user_can('manage_options') && !empty($_POST['wmu_attachments']) && json_decode(stripslashes($_POST['wmu_attachments']), JSON_OBJECT_AS_ARRAY)){
            return 0;
        }
        return $approved;
    });

    Put it in the active theme functions.php file.

Viewing 1 replies (of 1 total)
  • The topic ‘moderate the comments with image attachment’ is closed to new replies.