Archived topic
Disable "Leave a comment" section until the previous comment is moderated
1 reply · Started by Marcel on July 17, 2022
Viewing posts 1–2 of 2
Hello,
Do you think there is an option to change the PHP code so that the "Leave a comment" section is disabled until the previous comment is moderated?
Thank you!
Marcel
Hi there,
try this PHP Snippet:
add_filter( 'comments_open', function( $open, $post_id ){
$counts = wp_count_comments( $counts, $post_id );
if ( 0 !== $counts->moderated ) {
$open = false;
}
return $open;
}, 10, 2 );
This archived topic is closed to new replies.