Changeset 8513 for trunk/wp-includes/post.php
- Timestamp:
- 08/01/2008 03:50:20 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r8480 r8513 511 511 function add_post_meta($post_id, $meta_key, $meta_value, $unique = false) { 512 512 global $wpdb; 513 514 // make sure meta is added to the post, not a revision 515 if ( $the_post = wp_is_post_revision($post_id) ) 516 $post_id = $the_post; 513 517 514 518 // expected_slashed ($meta_key)
Note: See TracChangeset
for help on using the changeset viewer.