如何在标题中转换父类别。我想仅在子类别中添加文章,而类别仅作为装饰出现。
例如:
类别(5) //您无法添加文章
子类别1(3)//您可以添加文章
子类别2(2)//您可以添加文章
子类别3(0)//您可以添加文章
类别(2) //您无法添加文章
子类别1(1)
Subcategory2(1)
我有这段代码:
$cat = $_POST['cat'];
$date = array(
'post_title' => $tite,
'post_content' => $des,
'post_status' => 'publish',
'post_category' =>array($cat),
'post_author' => $user_ID,
);
wp_insert_post($date);
和
<?php wp_dropdown_categories('orderby=name&hide_empty=0&show_count=1&show_option_none=All Category&class=categorie&hierarchical=1&name=cat'); ?>