onPostUnliked( )


Notes:

Triggered when a post is unliked.

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

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

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