Changeset 59699
- Timestamp:
- 01/24/2025 12:28:26 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r59697 r59699 6006 6006 } 6007 6007 6008 // We've got all the data -- post it. 6009 $newpost = compact( 6010 'post_id', 6008 $newpost = array( 6009 'ID' => $post_id, 6010 ); 6011 6012 $newpost += compact( 6011 6013 'post_content', 6012 6014 'post_title', … … 6029 6031 ); 6030 6032 6033 // We've got all the data -- post it. 6031 6034 $result = wp_update_post( $newpost, true ); 6032 6035 if ( is_wp_error( $result ) ) {
Note: See TracChangeset
for help on using the changeset viewer.