也许我的问题并不容易。 我使用buddypress + woo + wcvendors pro。 我在buddypress上创建了一个“类别” xprofile字段。
我希望woocommerce上的“类别”字段由新产品页面上的“类别” xprofile字段填充。
我使用wcvendors pro。尝试使用以下命令在第384行上编辑class-wcvendors-pro-product-controller: //类别 if(isset($ _POST ['product_cat'])&& is_array($ _POST ['product_cat'])){
$user_id = get_the_author_id();
$categories = xprofile_get_field_data( 'field=MyXprofileField', $user_id );
显然没有成功。 我可以添加带有wp_set_post_terms的过滤器吗? 有人能帮我吗? 谢谢!