Parsed: 111289
<?php /** * WordPress Taxonomy Administration API. * * @package WordPress * @subpackage Administration */ // // Category. // /* function category_exists() – Check whether a category exists. */ /* function get_category_to_edit() – Get category object for given ID and ‘edit’ filter context. */ /* function wp_create_category() – Add a new category to the database if it does not already exist. */ /* function wp_create_categories() – Create categories for the given post. */ /* function wp_insert_category() – Updates an existing Category or creates a new Category. */ /* function wp_update_category() – Aliases wp_insert_category() with minimal args. */ // // Tags. // /* function tag_exists() – Check whether a post tag with a given name exists. */ /* function wp_create_tag() – Add a new tag to the database if it does not already exist. */ /* function get_tags_to_edit() – Get comma-separated list of tags available to edit. */ /* function get_terms_to_edit() – Get comma-separated list of terms available to edit for the given post ID. */ /* function wp_create_term() – Add a new term to the database if it does not already exist. */