diff --git a/composer.json b/composer.json index 3c78532..d6260e1 100644 --- a/composer.json +++ b/composer.json @@ -2,5 +2,5 @@ "name": "bureaubolster/hookpress", "type": "wordpress-plugin", "require": {}, - "version": "1.14" + "version": "1.14.1" } diff --git a/hookpress.php b/hookpress.php index 9cab3ee..f05edab 100644 --- a/hookpress.php +++ b/hookpress.php @@ -3,14 +3,14 @@ Plugin Name: HookPress Plugin URI: http://mitcho.com/code/hookpress/ Description: HookPress turns all of your WordPress-internal hooks into webhooks. Possible uses include generating push notifications or using non-PHP web technology to extend WordPress. Read more about webhooks at the webhooks site. -Version: 1.14 +Version: 1.14.1 Author: mitcho (Michael Yoshitaka Erlewine) Author URI: http://mitcho.com/ Donate link: http://tinyurl.com/donatetomitcho */ define('HOOKPRESS_PRIORITY',12838790321); -$hookpress_version = "1.14"; +$hookpress_version = "1.14.1"; require('includes.php'); function hookpress_init() { diff --git a/hooks.php b/hooks.php index 56fdd42..da6271c 100644 --- a/hooks.php +++ b/hooks.php @@ -21,6 +21,10 @@ 'publish_page'=>array('POST'), 'publish_phone'=>array('POST'), 'publish_post'=>array('POST'), + 'publish_partner_post'=>array('POST'), + 'publish_event'=>array('POST'), + 'publish_job'=>array('POST'), + 'publish_recipe'=>array('POST'), 'save_post'=>array('POST', 'PARENT_POST'), // TODO: make sure the original post stuff is working 'wp_insert_post'=>array('POST'),