How can I detach a category from a product?
Why such a request does not work?
PUT /wp-json/wc/v3/products/39037
{
“categories”:[
{
“id”:1239
},
{
“id”:1232
}
]
}
Why do I continue to get the old categories?
“categories”:[
{
“id”:1096,
“name”:“Кроссовки”,
“slug”:“sneaker”
},
{
“id”:1239,
“name”:“Носки”,
“slug”:“clothing-socken”
},
{
“id”:1232,
“name”:“Одежда”,
“slug”:“clothing”
},
{
“id”:1233,
“name”:“Шапки”,
“slug”:“clothing-caps”
}
]
How can I leave only categories 1239, 1232 and remove the rest?