我为CPT创建了自定义分类法。现在我想为类别类型创建颜色,但是我想我失败了。我可以在编辑类别中看到拾色器,也可以选择它,但是在保存类别并再次检查后,它没有显示任何颜色。
以下代码适用于常规帖子类别,但不适用于自定义帖子类型类别。
我不确定在哪里犯错
我的税务注册:
$labels = array(
'name' => _x('Categories', 'taxonomy general name'),
'singular_name' => _x('Category', 'taxonomy singular name'),
'search_items' => __('Search Categories'),
'all_items' => __('All Categories'),
'parent_item' => __('Parent Category'),
'parent_item_colon' => __('Parent Category:'),
'edit_item' => __('Edit Category'),
'update_item' => __('Update Category'),
'add_new_item' => __('Add New Category'),
'new_item_name' => __('New Category Name'),
'menu_name' => __('Category'),
);
$args = array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'show_in_nav_menus' => true,
'rewrite' => array('slug' => 'blog-category'),
);
register_taxonomy('blog-category', array('blog'), $args);
function.php的代码,用于在类别类型中创建标签以选择颜色
add_action( 'blog-category_edit_form_fields', 'blog_category_taxonomy_custom_fields', 10, 2 );
function blog_category_taxonomy_custom_fields($tag) {
?>
<tr class="form-field">
<th scope="row" valign="top">
<label for="excerpt"><?php _e('Color'); ?></label>
</th>
<td>
<input type="text" name="_term_meta[color]" class="color-picker"
value="<?php echo get_term_meta($tag->term_id, 'color', true) ?>">
<script>
jQuery(function ($) {
$('.color-picker').wpColorPicker();
})
</script>
</td>
</tr>
<?php
}