onPostUpdated( )


Notes:

Triggered when a post is updated.

Permissions
Manage Blog
Read Blog
Read Draft Blog Posts
Learn more about app permissions.
Method Declaration
Copy
function onPostUpdated(handler: function): void;
Method Parameters
handlerfunction

handler(event: PostUpdatedEnvelope): void | Promise<void>

JavaScript
import { posts } from "@wix/blog"; posts.onPostUpdated((event) => { // handle your event here });
Did this help?