Pushover Notifications for WordPress is built from the ground up to be extended. It offers the ability to integrate with the plugin options, settings page, and even send notifications with 2 lines of code. So what do you need to do to integrate? It’s simple. Short of details, this is the ‘business end’ of sending a notification.
$args = array( 'title' => $title, 'message' => $message ); ckpn_send_notification( $args );
First, figure out what you want to integrate with, and what options will be available. Once you’ve done this, you can easily add your settings items to the Pushover Notifications for WordPress settings page with the hook ‘ckpn_notification_checkbox_filter’. This hook runs just after the standard settings for Pushover Notifications for WordPress. See below for an example:
function settings_fields() {
$current = get_option(‘ckpn_pushover_notifications_settings’);
?>
Your Plugin Settings
value=”” />
value=”1″
checked=”checked”