Ben "My Category" olarak gösterilir ama "deneme-my-kategorisinde" bir kategori sümüklü böcek var olan bir kategori oluşturmak için () wp_insert_category kullanmak istiyorum.
Ben wp_insert_category ile yapabilir miyim? Herkes bir örnek var mı?
$parent_term = term_exists( 'fruits', 'product' ); // array is returned if taxonomy is given
$parent_term_id = $parent_term['term_id']; // get numeric term id
wp_insert_term(
'Apple', // the term
'product', // the taxonomy
array(
'description '=> 'A yummy apple.'
'slug' => 'apple'
'parent'=> $parent_term_id
)
);
Bkz http://codex.wordpress.org/Function_Reference/wp_insert_term
İlk Taksonomiler şunlardır: 'kategorisini', 'post_tag', 'nav_menu', 'link_category' (wp-includes/taxonomy.php tanımlanmıştır)