WPINC_category.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface CategoryInterface {
    function get_categories( $args = '' );
    function get_category( $category, $output = OBJECT, $filter = 'raw' );
    function get_category_by_path( $category_path, $full_match = true, $output = OBJECT );
    function get_category_by_slug( $slug  );
    function get_cat_ID( $cat_name );
    function get_cat_name( $cat_id );
    function cat_is_ancestor_of( $cat1, $cat2 );
    function sanitize_category( $category, $context = 'display' );
    function sanitize_category_field( $field, $value, $cat_id, $context );
    function get_tags( $args = '' );
    function get_tag( $tag, $output = OBJECT, $filter = 'raw' );
    function clean_category_cache( $id );
    function _make_cat_compat( &$category );
}