How can i disable the comment form, if the user is already submitted a comment for the specified post?
I am using this now, but this is only good for 1 post / user / website.
<?php
global $current_user;
$args = array('user_id' => $current_user->ID);
$usercomment = get_comments($args);
if(count($usercomment) >= 1){
echo 'disabled';
} else {
comment_form();
}
?>
Simply add the post_id parameter to the
get_comments
arguments array something like: