add_action('save_post', 'qgm_sync_content_to_agent', 20, 3); function qgm_sync_content_to_agent($post_id, $post, $update) { if (wp_is_post_autosave($post_id) || wp_is_post_revision($post_id)) { return; } if ($post->post_status !== 'publish') { return; } $supported_types = array('post', 'page', 'product'); if (!in_array($post->post_type, $supported_types)) { return; } $price = ''; if ($post->post_type === 'product' && function_exists('wc_get_product')) { $product = wc_get_product($post_id); if ($product) { $price = $product->get_price(); } } $payload = array( 'tenant' => 'quirkygifts', 'id' => $post_id, 'title' => $post->post_title, 'url' => get_permalink($post_id), 'type' => $post->post_type, 'price' => $price, 'content' => wp_strip_all_tags($post->post_content) ); wp_remote_post('https://agent.quirkygiftsmalta.com/webhook/sync-content', array( 'method' => 'POST', 'timeout' => 5, 'blocking' => false, 'headers' => array('Content-Type' => 'application/json; charset=utf-8'), 'body' => json_encode($payload) )); }