Revert [14755] as this breaks post_meta importing. See #12860.
git-svn-id: https://develop.svn.wordpress.org/trunk@14763 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
9a7b926d5c
commit
059ad3e24f
|
@ -601,6 +601,9 @@ class WP_Import {
|
||||||
if ( $postmeta) { foreach ($postmeta as $p) {
|
if ( $postmeta) { foreach ($postmeta as $p) {
|
||||||
$key = $this->get_tag( $p, 'wp:meta_key' );
|
$key = $this->get_tag( $p, 'wp:meta_key' );
|
||||||
$value = $this->get_tag( $p, 'wp:meta_value' );
|
$value = $this->get_tag( $p, 'wp:meta_value' );
|
||||||
|
$value = stripslashes($value); // add_post_meta() will escape.
|
||||||
|
// get_post_meta would have done this but we read straight from the db on export so we could have a serialized string
|
||||||
|
$value = maybe_unserialize($value);
|
||||||
|
|
||||||
$this->process_post_meta($post_id, $key, $value);
|
$this->process_post_meta($post_id, $key, $value);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue