这就是我添加自定义分类法的方式
$args = array(
'labels'=>
$labels, 'hierarchical'=>
true, 'public'=>
true, 'show_ui'=>
true, 'show_admin_column'=>
true, 'show_in_nav_menus'=>
true, 'show_tagcloud'=>
true, 'supports' =>
array( 'editor', 'thumbnail')
);
register_taxonomy( 'bookwriters', 'product', $args );
【添加WordPress编辑器】我想在说明中添加WordPress编辑器我该怎么做?
文章图片
#1 你可以尝试这样的事情:
/**
* TinyMCE editor in taxonomy page
*/
function o99__category_editor() {
global $pagenow, $current_screen;
if( $pagenow == 'edit-tags.php' ) {
require_once(ABSPATH . 'wp-admin/includes/post.php');
// we need these
require_once(ABSPATH . 'wp-admin/includes/template.php');
wp_tiny_mce( false, array( 'editor_selector' =>
'description', 'elements' =>
'description', 'mode' =>
'exact' ));
// first argument TRUE will give the light version
}
}
add_action( 'init', 'o99__category_editor' );
我并没有真正测试过, 但是应该遵循这些思路。同样, 由于默认将TinyMCE编辑器删除了, 因此, 你可能需要获取Classic Editor插件。也没有测试。
推荐阅读
- 每个产品摘要后,如何在WooCommerce上添加单独的html代码
- 基于自定义客户字段的其他订单电子邮件
- 将短代码添加到WordPress模板文件
- 单个产品汇总后如何在WooCommerce上添加html代码
- 如何通过子菜单为菜单项增加显示延迟()
- 如何为WordPress Tabs元素添加自定义颜色()
- 如何在wp_list_categories上添加类
- 高级自定义字段不适用于页面模板
- 低代码的5个误区,你踩雷了吗()