WordPress.org
Extensions
Support
Search…
Version 8
Notification – Custom Notifications and Alerts for WordPress
Known issues
🤸♀️ User guide
Update broke my site
How Notification plugin works
Who can use this plugin
How to create Notifications
Troubleshooting
Advanced
🔧
Developer
General
Plugin loading chain
Runtime
Extension possibilities
Creating an extension
Customizations
Bundling Notification plugin
White label mode
Notifications
Triggers
Carriers
Recipients
Snippets
🧩
Extensions
Installation
Planned extensions
3rd Party Extensions
Custom Fields
Email Attachments
Push
Scheduled Triggers
Slack
Twilio
Powered By
GitBook
Customizations
How to add customizations from a plugin or child theme.
Whether you want to customize the Notification plugin from a child theme or a plugin the workflow stays the same for both of the approaches.
All you need to do is create a file somewhere within your codebase and include it when the Notification plugin is ready.
1
add_action( 'notification/init', function() {
2
require_once __DIR__ . '/includes/notification.php'
3
} );
Copied!
From this file, you are free to use all the classes Notification provides and register any custom elements like Triggers or Carriers.
Always use a
child theme
when customizing your theme, otherwise, all your changes will be overwritten by an update.
For bigger customizations, we suggest creating a full extension plugin.
Creating an extension
Previous
Creating an extension
Next
Bundling Notification plugin
Last modified
6mo ago
Copy link