我有这个代码来限制每个用户的评论。
<!-- #only one comment -->
<?php global $current_user,$post;
$usercomment = get_comments(array(\'author_email\' => $current_user->user_email, \'post_id\' => $post->ID));
if($usercomment) {
echo "Thank you!";
}
else {
comment_form();
}
?>
如何编辑此代码以同时检查自定义用户配置文件字段[电话]是否为空?如果为空,则显示消息,否则显示注释表单。
非常感谢。