
Signalgrid is a dedicated alerting bridge for WordPress developers. This plugin provides a direct pipeline between your WordPress site and the Signalgrid push notification service, stripping away unnecessary complexity to focus on pure utility.
It is designed to stay out of your way, providing a clean, globally accessible PHP function that allows you to trigger instant mobile alerts from anywhere within your theme or custom plugin logic.
To send a push notification, simply call the function anywhere in your code:
<?php
$channel = "df1741aabc93ce5fb7449435c266a8a3c5763b29";
$title = "This is the title";
$body = "This is the body";
$severity = "INFO";
$critical = false;
if ( signalgrid_notify($channel, $title, $body, $severity, $critical) ) {
// Notification sent successfully
} else {
// Error handling logic here
}
?>