wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



the_category › WordPress Function

Da0.71
Deprecaton/a
the_category ( $separator = '', $parents = '', $post_id = false )
Parametri: (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.
    Richiesto: No
    Default: (vuoto)
  • (string) $parents Optional. How to display the parents. Accepts 'multiple', 'single', or empty. Default empty string.
    Richiesto: No
    Default: (vuoto)
  • (int) $post_id Optional. ID of the post to retrieve categories for. Defaults to the current post.
    Richiesto: No
    Default: false
Definito a:
Codex:

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



Sorgenti

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