Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_call_success_blogger_newPost

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3895           $post_ID = wp_insert_post($post_data);
3896           if ( is_wp_error( $post_ID ) )
3897                return new IXR_Error(500, $post_ID->get_error_message());
3898
3899           if ( !$post_ID )
3900                return new IXR_Error(500, __('Sorry, your entry could not be posted. Something wrong happened.'));
3901
3902           $this->attach_uploads( $post_ID, $post_content );
3903
3904           do_action( 'xmlrpc_call_success_blogger_newPost', $post_ID, $args );
3905
3906           return $post_ID;
3907      }
3908
3909      /**
3910       * Edit a post.
3911       *
3912       * @since 1.5.0
3913       *