wp admin includes taxonomy.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki
interface AdminTaxonomyInterface {
function category_exists( $cat_name, $parent = null );
function get_category_to_edit( $id );
function wp_create_category( $cat_name, $parent = 0 );
function wp_create_categories( $categories, $post_id = '' );
function wp_insert_category( $catarr, $wp_error = false );
function wp_update_category($catarr);
function tag_exists($tag_name);
function wp_create_tag($tag_name);
function get_tags_to_edit( $post_id, $taxonomy = 'post_tag' );
function get_terms_to_edit( $post_id, $taxonomy = 'post_tag' );
function wp_create_term($tag_name, $taxonomy = 'post_tag');
}