set the meta_id according to item metadatum and parent_meta_id
This commit is contained in:
parent
765b498e99
commit
dd6f04a6d8
|
@ -203,7 +203,7 @@ class REST_Item_Metadata_Controller extends REST_Controller {
|
||||||
$item_metadata->set_value( $value );
|
$item_metadata->set_value( $value );
|
||||||
} elseif(is_array($value)) {
|
} elseif(is_array($value)) {
|
||||||
$item_metadata->set_value(implode(' ', $value));
|
$item_metadata->set_value(implode(' ', $value));
|
||||||
} else{
|
} else {
|
||||||
$item_metadata->set_value($value);
|
$item_metadata->set_value($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,9 +38,32 @@ class Item_Metadata_Entity extends Entity {
|
||||||
if (!is_null($meta_id) && is_int($meta_id)) {
|
if (!is_null($meta_id) && is_int($meta_id)) {
|
||||||
$this->set_meta_id($meta_id);
|
$this->set_meta_id($meta_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_null($parent_meta_id) && is_int($parent_meta_id)) {
|
if (!is_null($parent_meta_id) && is_int($parent_meta_id)) {
|
||||||
$this->set_parent_meta_id($parent_meta_id);
|
$this->set_parent_meta_id($parent_meta_id);
|
||||||
|
|
||||||
|
//set the meta_id according to item metadatum and parent_meta_id
|
||||||
|
$childrens = get_metadata_by_mid( 'post', $parent_meta_id );
|
||||||
|
if ( is_object( $childrens ) ) {
|
||||||
|
$childrens = $childrens->meta_value;
|
||||||
|
if ( is_array($childrens) && !empty($childrens) ) {
|
||||||
|
$childrens_in = implode(',', $childrens);
|
||||||
|
global $wpdb;
|
||||||
|
$item_metadata = $wpdb->get_results( $wpdb->prepare(
|
||||||
|
"SELECT * FROM $wpdb->postmeta
|
||||||
|
WHERE post_id = %d AND
|
||||||
|
meta_key = %s AND
|
||||||
|
meta_id IN ($childrens_in)",
|
||||||
|
$item->get_id(),
|
||||||
|
$metadatum->get_id()
|
||||||
|
), ARRAY_A );
|
||||||
|
error_log("FIND" . json_encode($item_metadata));
|
||||||
|
if( is_array($item_metadata) && !empty($item_metadata) ) {
|
||||||
|
$meta_id = (int)$item_metadata[0]['meta_id'];
|
||||||
|
$this->set_meta_id($meta_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue