wp分类html,wordpress分类字段拓展为分类添加分类类型

// 分类添加字段

function add_taxonomy_field(){

$type = ['article' => '文章', 'product' => '产品', 'case' => '案例'];

$html = '

类型';

foreach($type as $key => $val) {

$html .= '' . $val;

}

$html .= '

';

echo $html;

}

add_action('category_add_form_fields','add_taxonomy_field',10,2);

// 分类编辑字段

function edit_taxonomy_field( $tag ){

$value = get_option('tag-type-'.$tag->term_id);

$type = ['article' => '文章', 'product' => '产品', 'case' => '案例'];

$html = '

类型';

foreach($type as $key => $val) {

if ( $value == $key ) {

$html .= '' . $val;

} else {

$html .= '' . $val;

}

}

$html .= '

';

echo $html;

}

add_action('category_edit_form_fields','edit_taxonomy_field',10,2);

// 保存数据

function save_taxonomy_field( $term_id ){

if( isset($_POST['tag-type']) ){

//判断权限--可改

if(!current_user_can('manage_categories')){

return $term_id;

}

$tag_type_key = 'tag-type-'.$term_id;

$tag_type_value = $_POST['tag-type'];

// 更新选项值

update_option( $tag_type_key, $tag_type_value );

}

}

function taxonomy_setup() {

add_action('created_category','save_taxonomy_field',10,1);

add_action('edited_category','save_taxonomy_field',10,1);

}

add_action( 'admin_init', 'taxonomy_setup' );

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值