【发布时间】:2023-01-10 01:43:05
【问题描述】:
我想更改 woocommerce 中自定义分类法的值。
function get_pw_by_email($email) {
$products = get_posts(array('post_type' =>'product', 'tax_query' =>array(array('taxonomy' =>'pa_e-mail', 'field' =>'name', 'terms' =>$email))));
$terms = wp_get_post_terms($products[0] ->ID, 'pa_pw', true);
if (empty($terms)) {
return '';
}
return $terms[0]->name;
}
像这样我可以获得正确的分类值。但现在我想创建一个随机数并更新该值 - 而不会丢失该产品的所有其他分类法。
【问题讨论】:
标签: php wordpress woocommerce