Parsed: 114549
<?php /** * Taxonomy API: Core category-specific template tags * * @package WordPress * @subpackage Template * @since 1.2.0 */ /* function get_category_link() – Retrieve category link URL. */ /* function get_category_parents() – Retrieves category parents with separator. */ /* function get_the_category() – Retrieves post categories. */ /* function get_the_category_by_ID() – Retrieves category name based on category ID. */ /* function get_the_category_list() – Retrieves category list for a post in either HTML list or custom format. */ /* function in_category() – Checks if the current post is within any of the given categories. */ /* function the_category() – Display category list for a post in either HTML list or custom format. */ /* function category_description() – Retrieve category description. */ /* function wp_dropdown_categories() – Displays or retrieves the HTML dropdown list of categories. */ /* function wp_list_categories() – Displays or retrieves the HTML list of categories. */ /* function wp_tag_cloud() – Displays a tag cloud. */ /* function default_topic_count_scale() – Default topic count scaling for tag links. */ /* function wp_generate_tag_cloud() – Generates a tag cloud (heatmap) from provided data. */ /* function _wp_object_name_sort_cb() – Serves as a callback for comparing objects based on name. */ /* function _wp_object_count_sort_cb() – Serves as a callback for comparing objects based on count. */ // // Helper functions. // /* function walk_category_tree() – Retrieves HTML list content for category list. */ /* function walk_category_dropdown_tree() – Retrieves HTML dropdown (select) content for category list. */ // // Tags. // /* function get_tag_link() – Retrieve the link to the tag. */ /* function get_the_tags() – Retrieves the tags for a post. */ /* function get_the_tag_list() – Retrieves the tags for a post formatted as a string. */ /* function the_tags() – Retrieve the tags for a post. */ /* function tag_description() – Retrieve tag description. */ /* function term_description() – Retrieves term description. */ /* function get_the_terms() – Retrieves the terms of the taxonomy that are attached to the post. */ /* function get_the_term_list() – Retrieves a post’s terms as a list with specified format. */ /* function get_term_parents_list() – Retrieve term parents with separator. */ /* function the_terms() – Displays the terms for a post in a list. */ /* function has_category() – Check if the current post has any of given category. */ /* function has_tag() – Checks if the current post has any of given tags. */ /* function has_term() – Check if the current post has any of given terms. */