onTagCreated( )


Notes:

Triggered when a tag is created.

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

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

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