Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_wp_insert_post_data

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
1205                unset( $post_data['post_format'] );
1206           }
1207
1208           // Handle enclosures
1209           $enclosure = isset( $post_data['enclosure'] ) ? $post_data['enclosure'] : null;
1210           $this->add_enclosure_if_new( $post_ID, $enclosure );
1211
1212           $this->attach_uploads( $post_ID, $post_data['post_content'] );
1213
1214           $post_data = apply_filters( 'xmlrpc_wp_insert_post_data', $post_data, $content_struct );
1215
1216           $post_ID = $update ? wp_update_post( $post_data, true ) : wp_insert_post( $post_data, true );
1217           if ( is_wp_error( $post_ID ) )
1218                return new IXR_Error( 500, $post_ID->get_error_message() );
1219
1220           if ( ! $post_ID )
1221                return new IXR_Error( 401, __( 'Sorry, your entry could not be posted. Something wrong happened.' ) );
1222
1223           return strval( $post_ID );