From 0abd25b51635dbb1d33b188f98507a6e7223abc1 Mon Sep 17 00:00:00 2001 From: westi Date: Mon, 9 Mar 2009 22:17:56 +0000 Subject: [PATCH] Add hooks to allow plugins to extend AtomPub support. Fixes #8827 props znarfor and josephscott. git-svn-id: http://svn.automattic.com/wordpress/trunk@10750 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-app.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-app.php b/wp-app.php index ac70dba618..c791c4e71b 100644 --- a/wp-app.php +++ b/wp-app.php @@ -478,6 +478,8 @@ EOD; // this could affect our ability to send back the right headers @wp_set_post_categories($postID, $post_category); + do_action( 'atompub_create_post', $postID, $entry ); + $output = $this->get_entry($postID); log_app('function',"create_post($postID)"); @@ -556,6 +558,8 @@ EOD; $this->internal_error(__('For some strange yet very annoying reason, this post could not be edited.')); } + do_action( 'atompub_put_post', $ID, $parsed ); + log_app('function',"put_post($postID)"); $this->ok(); }