wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



the_category › WordPress Function

Depuis0.71
Dépréciéen/a
the_category ( $separator = '', $parents = '', $post_id = false )
Paramètres: (3)
  • (string) $separator Optional. Separator between the categories. By default, the links are placed in an unordered list. An empty string will result in the default behavior.
    Requis: Non
    Défaut: (vide)
  • (string) $parents Optional. How to display the parents. Accepts 'multiple', 'single', or empty. Default empty string.
    Requis: Non
    Défaut: (vide)
  • (int) $post_id Optional. ID of the post to retrieve categories for. Defaults to the current post.
    Requis: Non
    Défaut: false
Défini(e) dans:
Codex:

Displays category list for a post in either HTML list or custom format.



Source

function the_category( $separator = '', $parents = '', $post_id = false ) {
	echo get_the_category_list( $separator, $parents, $post_id );
}