在这里,将此代码粘贴到主题中functions.php
文件:
function loggedin_approved_comment($approved)
{
// No need to do the check if the comment is already approved anyway.
if (!$approved) {
if (is_user_logged_in()) {
// Note: 1/0, not true/false
$approved = 1;
}
}
return $approved;
}
// Action allows the comment automatic approval to be over-ridden.
add_action(\'pre_comment_approved\', \'loggedin_approved_comment\');
确保在WordPress安装的“设置”面板中启用评论调节。