I think that hook pre_comment_approved
should be perfect in this case.
Something like this should do the job:
function my_pre_comment_approved($approved, $commentdata) {
// you can return 0, 1 or 'spam'
if ( $commentdata['user_ID'] ) {
$args = array(
'user_id' => $commentdata['user_ID'],
'post_id' => $commentdata['comment_post_ID']
);
$usercomment = get_comments( $args );
if ( 1 <= count( $usercomment ) )
return 0;
}
return $approved;
}
add_filter('pre_comment_approved', 'my_pre_comment_approved', 99, 2);
Your filter should return:
0
(i.e. ‘false’) if the comment should be disapproved1
(i.e. ‘true’) if the comment should be approved'spam'
if the comment should be marked as spam
Related Posts:
- Is it possible to pull comments from facebook into your blog?
- Enable Submit Comment Without Page Reload (Using Ajax)?
- Getting Post Comments for post ID using WP_Query() and a Custom Loop?
- How to deal with small scale comment spam on small commercial sites? [closed]
- How to use a custom comments template
- Comment visibility
- Add placeholder attribute to comment form fields
- human_time_diff() returns “48 years ago” for all comments
- Allowing more elements in comments via functions.php
- Set post comments open function
- “Categories” for comments?
- Why are default comments deprecated?
- Comments Reply Form
- Allow guests comments on single post
- Why do I get email notifications about comments that WordPress has already determined are spam?
- Delayed commenting
- An action hook where a comment meta is updated
- Last comment page first with full number of comments?
- Only subscriber role user can comment not other
- How to check if commenter is the_author?
- Strategies for coping with hyperagressive spambots?
- Relaxing unescaped HTML filtering inside tags?
- How to save new comment as custom comment type?
- How to remove the “on” string before recent comments link?
- WordPress comments email notification for authors
- How to get the result of comments_number() as a string instead of printing it out?
- Should I still worry about paginated comments with the latest wordpress versions?
- WordPress unresponsive after calling wp_update_comment()
- How to dont allow registered users to comment without being logged in?
- Publish a message on facebook after having posted a comment
- How can I edit the Twenty Ten Theme to remove the comments box when a page uses a specific template?
- Highlight Author Comments issues
- wp_insert_comment and security
- How can someone submit a comment when my site has no comment field?
- How can I fix wp_insert_comment failure when ‘comment_content” includes slanted apostrophe in Excel csv source data
- Is WordPress vulnerable to “comment posting forgery”?
- Author can only see own post comment and can moderate
- highlight “starred” comments by admin
- How can I edit comment notification email content?
- your comment awaiting moderation message sometimes not appearing
- how to properly use comments-template.php
- How can I assign a specific id to the last comment of a post
- Reply By Email to comment notifications
- Modify WordPress Comment From For AMP Html
- How to implement comments on specific fields in wordpress?
- delete duplicate comments
- wp_list_comments renders incorrectly nested
- Alternative to the filter comment_reply_link
- Number/ Position of a Comment
- code highiglight not working comment
- Comment number does not increment
- Cancel comment filter?
- Can I have Comments open to specific users only?
- How to edit the text below “Leave a Reply”
- Safe to remove this: when using a 3rd Party Comment App? [closed]
- Commenting system for WordPress
- Commentlist: bypostauthor problem with children list
- Comments does not work?
- Review count per product
- comment_notes_before not working
- why can’t I retrieve the comment ID?
- How to create post comment from different domain
- get_comment_link without pagination base in the returned URL?
- Comments on future posts
- Copy and Paste Password for Comments
- Display custom text when comments are closed
- Returning error upon comment being flagged as spam
- is it possible to have the full code instead in the comments.php page
- I need to disable Disqus comments pre-approval, but i can’t find where
- How do i remove approved spam comments by date?
- Remove Javascript generated by Comments
- How to Trigger comment_form_after action if comment_form() not used
- Need Comment Link Help
- Comment Table Size Results in Slow Page Loads and 500 Errors
- get_query_var(‘paged’) for WP_Comment_Query always return 1 when using paginate_comments_links()
- How to only show current user’s comments and comments on current user’s posts in wp admin
- How to make author comment name to “Editorial Staff” no matter which ever author is replying to comments from his/her account?
- Changing the Comment Fields using Filter (without success)
- Comments pagination: reverse JUST the links texts (1-2-3 to 3-2-1), not comments order
- Custom sort comments with select form
- Display date and time into post edit comments section
- Disallowed Tag Present in AMP WordPress ()
- Subcriber getting multiiple notifications for new comments
- Limit Comment Line Count – Add Read More Button
- Comments/Discussion Not enabled on newly created posts/pages
- Commenter username copies author username
- Fire Social Annex Code on Comment Approval
- How can I enable commenting from mobile view?
- Displaying comment rating stars in carousel
- Enable comments option
- How to force users to nest their comments
- jQuery to Create Button to Show/Hide WordPress Comments and to Hide Comments by Default
- Comment form – different title if no comment yet
- WordPress Comments jQuery Doesn’t submit
- Insert comment and still use moderation
- Auto approve all comments (editor)
- add field comment [duplicate]
- How to batch convert comments to posts?
- Customize comment notification e-mails with HTML
- I need help about wordpress of members section