Всем привет!
Никак не могу понять - есть ли простой спопсоб обновления мета-полей для термина таксономии (как в моем примере категории товара woocommerce) ?
Пробую сделать так
function product_cat_save_taxonomy_description( $term_id ) {
$term_descriptions = get_field($sub_domain.'_subdomain_description', 'product_cat_'.$term_id);
if (!$term_descriptions) {
$meta_value = 'hello';
update_field($sub_domain.'_subdomain_description', $meta_value, 'product_cat_'.$term_id); }
add_action( 'create_product_cat', 'product_cat_save_taxonomy_description', 10, 2 );
add_action( 'edited_product_cat', 'product_cat_save_taxonomy_description', 10, 2 );
не получается.
Сталкивался кто-то с такой задачей ?