Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- add_action('wp_insert_comment', function($comment_id, $comment) {
- if ($comment->comment_type === 'review') {
- $product_id = $comment->comment_post_ID;
- $review_content = $comment->comment_content;
- $author = $comment->comment_author;
- $author_email = $comment->comment_author_email;
- do_action(
- 'flowmattic_trigger_workflow',
- 'XXXXXXXXXX', // Workflow ID generated by FlowMattic
- array(
- 'Product ID' => $product_id,
- 'Review Text' => $review_content,
- 'Author' => $author,
- 'Author Email' => $author_email,
- )
- );
- }
- }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement