See if the email exists or not
First, you need to create the following function: function checkEmailAlreadyExists( $message_id ) { $posts_with_meta = get_posts( array( ‘posts_per_page’ => 1, // we only want to check if any exists, so don’t need to get all of them ‘post_type’ => ‘my-custom-post-type’, ‘meta_key’ => ‘ticket_id’, ‘meta_value’ => $message_id, ‘fields’ => ‘ids’, // we don’t need it’s content, … Read more