时间:2024-04-01
我是一名WordPress开发者,经常使用的WordPress电子商务插件是WooCommerce。在开发WooCommerce主题时,有时需要添加自定义字段来满足特定需求,今天我来分享一下如何为WooCommerce的商品分类添加自定义字段。
首先是商品分类添加页面,我们添加一个图标的表单,用户填写图标的名称,我是用的字体图标,当然,也可以是图片网址。这里我们使用WooCommerce自定义的product_cat_add_form_fields
来把表单添加到商品分类添加页面。
//分类添加表单 function tutorialshares_taxonomy_add_new_meta_field(){ //this will add the custom meta field to the add new term page ?> <div class="form-field"> <label for="term_meta[term_icon]"><?php _e('图标','woocommerce');?></label> <input class="regular-text" type="text" name="term_meta[term_icon]" id="term_meta[term_icon]" value=""> </div> <?php } add_action('product_cat_add_form_fields','tutorialshares_taxonomy_add_new_meta_field',10,2);
商品分类编辑页面用的是product_cat_edit_form_fields
,和上面的基本上是差不多的,只不过多了已经添加过的数据,其实两个是可以合并成一个功能的。
//分类编辑表单 function tutorialshares_taxonomy_edit_meta_field($term){ //put the term ID into a variable $t_id=$term->term_id; //retrieve the existing value(s) for this meta field. This returns an array $term_meta=get_option("taxonomy_$t_id");?> <tr class="form-field"> <th scope="row" valign="top"><label for="term_meta[term_icon]"><?php _e('图标','woocommerce');?></label></th> <td> <input class="regular-text" type="text" name="term_meta[term_icon]" id="term_meta[term_icon]" value="<?php echo esc_attr($term_meta['term_icon'])?esc_attr($term_meta['term_icon']):'';?>"> </td> </tr> <?php } add_action('product_cat_edit_form_fields','tutorialshares_taxonomy_edit_meta_field',10,2);
WooCommercce直接把商品分类字段保存在了WordPress的wp_options
数据表中,个人觉得这是一个很好的设计,因为商品分类的自定义字段一般不会很多,专门为此新建一个数据表就增加了很多复杂度,WordPress的 wp_options
基本上是k-v性质的,也很适合自定义字段这种类型的数据。WordPress也提供了很方便的功能接口,直接用update_option
保存数据即可,
//保存分类数据 function save_taxonomy_custom_meta($term_id){ if(isset($_POST['term_meta'])){ $t_id=$term_id; $term_meta=get_option("taxonomy_$t_id"); $cat_keys=array_keys($_POST['term_meta']); foreach($cat_keys as $key){ if(isset($_POST['term_meta'][$key])){ $term_meta[$key]=$_POST['term_meta'][$key]; } } //Save the option array. update_option("taxonomy_$t_id",$term_meta); } } add_action('edited_product_cat','save_taxonomy_custom_meta',10,2); add_action('create_product_cat','save_taxonomy_custom_meta',10,2);
从上面保存数据的代码中可以看出来。WooCommerce把商品分类的自定义字段保存到wp_options
数据表中了,调用这个数据的时候,我们直接用WordPress的get_option
函数就可以了。
$meta_field_array=get_option('taxonomy_'.$term->term_id); $meta_icon=$meta_field_array['term_icon'];
Copyright © 2019-2024 19.org.cn