我想在评论状态暂停或待审批时显示自定义消息。 wp_set_comment_status($comment_object->comment_ID, 'hold');
目前它正在显示消息"您的评论正在等待审核。"
我目前的代码是:
function new_comment_inserted($comment_id, $comment_object) {
if ( get_post_type($comment_object->comment_post_ID) == 'product' ) {
wp_set_comment_status($comment_object->comment_ID, 'hold');
}
}
add_action( 'wp_insert_comment','new_comment_inserted', 99, 2 );