LogoLogo
WordPress.orgExtensionsSupport
Version 9
Version 9
  • Notification – Custom Notifications and Alerts for WordPress
  • Updating to v9
  • Known issues
  • πŸ€Έβ€β™€οΈ User guide
    • Update broke my site
    • How Notification plugin works
    • Who can use this plugin
    • How to create Notifications
    • Troubleshooting
    • Advanced
      • How to escape { character
      • Background processing
      • How to setup different FROM address for different Notifications
      • Custom Post Type support
      • Disable upselling
      • How to send HTML Emails
  • πŸ”§Developer
    • General
      • Plugin loading chain
      • Runtime
      • Extension possibilities
      • Creating an extension
      • Customizations
      • Bundling Notification plugin
      • White label mode
    • Notifications
      • Suppressing the Notification
      • JSON synchronization
      • Programmatic Notifications
    • Triggers
      • List of all default Triggers
      • Custom Trigger
      • Enable support for non-public Custom Post Type
      • Adding Merge Tags to existing Triggers
    • Carriers
      • Custom Carrier
      • Adding custom fields to Carrier form
      • Suppressing the Carrier
    • Recipients
      • Custom Recipient
    • Snippets
      • General
        • Automatic Trigger testing
        • Allow other roles to edit Notifications
        • Programmatic Notification with manual Trigger
        • Background Processing filter
      • Triggers
        • Post
        • User
      • Integations
        • WP All Import
        • MemberPress
  • 🧩Extensions
    • Installation
    • Planned extensions
    • 3rd Party Extensions
    • Custom Fields
      • v2.2
      • v1.4
      • v1.3
    • Conditionals
    • Email Attachments
    • Push
    • Scheduled Triggers
    • Slack
    • Twilio
    • Webhooks
Powered by GitBook
On this page

Was this helpful?

  1. Developer
  2. Triggers

List of all default Triggers

A list of all Trigger names and slugs

This covers all the comment types. Use comment, pingback, trackback, another_comment_type instead of the {comment_type_slug}.

Trigger name

Trigger slug

Comment added

comment/{comment_type_slug}/added

Comment approved

comment/{comment_type_slug}/approved

Comment replied

comment/{comment_type_slug}/replied

Comment spammed

comment/{comment_type_slug}/spammed

Comment trashed

comment/{comment_type_slug}/trashed

Comment unapproved

comment/{comment_type_slug}/unapproved

Comment published

comment/{comment_type_slug}/published

Trigger name

Trigger slug

Media added

media/added

Media trashed

media/trashed

Media updated

media/updated

Trigger name

Trigger slug

Plugin activated

plugin/activated

Plugin deactivated

plugin/deactivated

Plugin installed

plugin/installed

Plugin removed

plugin/removed

Plugin updated

plugin/updated

This covers all the custom post types, as well. Use post, page, product, another_post_type instead of the {post_type_slug}.

Trigger name

Trigger slug

Post added

post/{post_type_slug}/added

Post saved as a draft

post/{post_type_slug}/drafted

Post sent for review

post/{post_type_slug}/pending

Post approved

post/{post_type_slug}/approved

Post published

post/{post_type_slug}/published

Post published privately

post/{post_type_slug}/published-privately

Post trashed

post/{post_type_slug}/trashed

Post updated

post/{post_type_slug}/updated

Post scheduled

post/{post_type_slug}/scheduled

This covers all the taxonomies. Use category, post_tag, another_taxonomy instead of the {taxonomy_slug}.

Trigger name

Trigger slug

Taxonomy term created

taxonomy/{taxonomy_slug}/created

Taxonomy term deleted

taxonomy/{taxonomy_slug}/deleted

Taxonomy term updated

taxonomy/{taxonomy_slug}/updated

Trigger name

Trigger slug

Theme installed

theme/installed

Theme switched

theme/switched

Theme updated

theme/updated

Trigger name

Trigger slug

User deleted

user/deleted

User login

user/login

User login failed

user/login_failed

User logout

user/logout

User password changed

user/password_changed

User password reset request

user/password_reset_request

User profile updated

user/profile_updated

User registered

user/registered

User role changed

user/role_changed

User email change request

user/email_change_request

User email changed

user/email_changed

Trigger name

Trigger slug

Available updates

wordpress/updates_available

Site email change request

wordpress/email_change_request

Site email changed

wordpress/email_changed

WordPress updated

wordpress/updated

Trigger name

Trigger slug

Personal Data erased

privacy/data-erased

Personal Data erase request

privacy/data-erase-request

Personal Data exported

privacy/data-exported

Personal Data export request

privacy/data-export-request

PreviousTriggersNextCustom Trigger

Last updated 6 months ago

Was this helpful?

πŸ”§