Reputation: 41
I want to show a custom message while comment status is on hold or pending for approval. wp_set_comment_status($comment_object->comment_ID, 'hold');
Currently it is showing the message "Your comment is awaiting moderation."
my current code is :
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 );
Upvotes: 3
Views: 1110
Reputation: 21
You don't have to code. Just only Install "Loco Translate", and change that text in "Core" section.
Upvotes: 1