[API] Fixed the default attributes saving
This commit is contained in:
parent
33e046a4d0
commit
07e6996bf1
|
@ -1388,7 +1388,11 @@ class WC_API_Products extends WC_API_Resource {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$taxonomy = $this->get_attribute_taxonomy_by_slug( $default_attr['name'] );
|
$taxonomy = sanitize_title( $attribute['name'] );
|
||||||
|
|
||||||
|
if ( isset( $attribute['slug'] ) ) {
|
||||||
|
$taxonomy = $this->get_attribute_taxonomy_by_slug( $attribute['slug'] );
|
||||||
|
}
|
||||||
|
|
||||||
if ( isset( $attributes[ $taxonomy ] ) ) {
|
if ( isset( $attributes[ $taxonomy ] ) ) {
|
||||||
$_attribute = $attributes[ $taxonomy ];
|
$_attribute = $attributes[ $taxonomy ];
|
||||||
|
|
Loading…
Reference in New Issue