wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_category › WordPress Function

Seit0.71
Veraltetn/v
the_category ( $separator = '', $parents = '', $post_id = false )
Parameter: (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.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $parents Optional. How to display the parents. Accepts 'multiple', 'single', or empty. Default empty string.
    Erforderlich: Nein
    Standard: (leer)
  • (int) $post_id Optional. ID of the post to retrieve categories for. Defaults to the current post.
    Erforderlich: Nein
    Standard: false
Definiert in:
Codex:

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



Quellcode

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