> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: onPostUnliked(event: PostUnlikedEvent) # Method package: wixBlogBackend # Method menu location: wixBlogBackend --> onPostUnliked # Method Link: https://dev.wix.com/docs/velo/apis/wix-blog-backend/events/on-post-unliked.md # Method Description: An event that is triggered when a post is unliked. The `onPostUnliked()` event handler runs when a post is unliked. The received `PostUnlikedEvent` object contains the `postId` of the unliked post. >**Note:** Backend events don't work when previewing your site. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## An event that occurs when a post is unliked ```javascript export function wixBlog_onPostUnliked(event) { const timeUnliked = event.metadata.eventTime; const postIdUnliked = event.data.postId; console.log('Post unliked', event); } /* Full event object: * * { * "metadata":{ * "id": "", * "entityId": "e65bd5d9-36ca-4388-8064-3d785d0f5460", * "eventTime":"2022-06-16T15:22:49.242Z", * "triggeredByAnonymizeRequest":false * }, * "data":{ * "postId":"e65bd5d9-36ca-4388-8064-3d785d0f5460" * } * } */ ``` ---