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

interface CategoryTemplateInterface {
    function get_category_link( $category );
    function get_category_parents( $id, $link = false, $separator = '/', $nicename = false, $visited = array() );
    function get_the_category( $id = false );
    function get_the_category_by_ID( $cat_ID );
    function get_the_category_list( $separator = '', $parents='', $post_id = false );
    function in_category( $category, $post = null );
    function the_category( $separator = '', $parents='', $post_id = false );
    function category_description( $category = 0 );
    function wp_dropdown_categories( $args = '' );
    function wp_list_categories( $args = '' );
    function wp_tag_cloud( $args = '' );
    function default_topic_count_scale( $count );
    function wp_generate_tag_cloud( $tags, $args = '' );
    function _wp_object_name_sort_cb( $a, $b );
    function _wp_object_count_sort_cb( $a, $b );
    function walk_category_tree();
    function walk_category_dropdown_tree();
    function get_tag_link( $tag );
    function get_the_tags( $id = 0 );
    function get_the_tag_list( $before = '', $sep = '', $after = '', $id = 0 );
    function the_tags( $before = null, $sep = ', ', $after = '' );
    function tag_description( $tag = 0 );
    function term_description( $term = 0, $taxonomy = 'post_tag' );
    function get_the_terms( $post, $taxonomy );
    function get_the_term_list( $id, $taxonomy, $before = '', $sep = '', $after = '' );
    function the_terms( $id, $taxonomy, $before = '', $sep = ', ', $after = '' );
    function has_category( $category = '', $post = null );
    function has_tag( $tag = '', $post = null );
    function has_term( $term = '', $taxonomy = '', $post = null );
}