This is how I add custom taxonomy
(这就是我添加自定义分类法的方式)
$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 );
I want add WordPress editor on description how i can do that ?
(我想在说明中添加WordPress编辑器我该怎么做?)
ask by Shakil Hossain translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…