Changeset 33910 for trunk/src/wp-includes/post-functions.php
- Timestamp:
- 09/05/2015 07:49:53 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-functions.php
r33776 r33910 2776 2776 * @since 1.0.0 2777 2777 * @since 4.2.0 Support was added for encoding emoji in the post title, content, and excerpt. 2778 * @since 4.4.0 A 'meta_input' array can now be passed to $postarr to add post meta data. 2778 2779 * 2779 2780 * @see sanitize_post() … … 3173 3174 } 3174 3175 3176 if ( ! empty( $postarr['meta_input'] ) ) { 3177 foreach ( $postarr['meta_input'] as $field => $value ) { 3178 update_post_meta( $post_ID, $field, $value ); 3179 } 3180 } 3181 3175 3182 $current_guid = get_post_field( 'guid', $post_ID ); 3176 3183
Note: See TracChangeset
for help on using the changeset viewer.