Skip to main content
Version: v9 (Current)

WordPress Notification Plugin Customization Guide

WordPress Notification plugin customization provides developers with flexible integration options for both child themes and custom plugins. The workflow remains consistent across both approaches, allowing you to extend notification functionality while maintaining update compatibility.

All you need to do is create a file somewhere within your codebase and include it when the Notification plugin is ready.

add_action( 'notification/init', function() {
require_once __DIR__ . '/includes/notification.php'
} );

From this file, you are free to use all the classes Notification provides and register any custom elements like Triggers or Carriers.

warning

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.

See Creating an Extension for more details.