wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



the_category › WordPress Function

Desde0.71
Obsoleton/a
the_category ( $separator = '', $parents = '', $post_id = false )
Parâmetros: (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.
    Required: No
    Padrão: (empty)
  • (string) $parents Optional. How to display the parents. Accepts 'multiple', 'single', or empty. Default empty string.
    Required: No
    Padrão: (empty)
  • (int) $post_id Optional. ID of the post to retrieve categories for. Defaults to the current post.
    Required: No
    Padrão: false
Definido em:
Codex:

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



Fonte

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