Tagged Questions
4
votes
2answers
481 views
How can I limit the number of comments per registered user per day in wordpress?
I found this code here on WPSE:
global $current_user, $post;
$args = array( 'user_id' => $current_user->ID, 'post_id' => $post->ID );
$usercomment = get_comments( $args );
if ( 1 <= ...