On this page
the_category( string $separator = '', string $parents = '', int $post_id = false )
Displays category list for a post in either HTML list or custom format.
Parameters
$separatorstring Optional-
Separator between the categories. By default, the links are placed in an unordered list. An empty string will result in the default behavior.
Default:
'' $parentsstring Optional-
How to display the parents. Accepts
'multiple','single', or empty.
Default:
'' $post_idint Optional-
ID of the post to retrieve categories for. Defaults to the current post.
Default:
false
Source
File: wp-includes/category-template.php. View all references
function the_category( $separator = '', $parents = '', $post_id = false ) {
echo get_the_category_list( $separator, $parents, $post_id );
}
Related
Uses
| Uses | Description |
|---|---|
| get_the_category_list() wp-includes/category-template.php | Retrieves category list for a post in either HTML list or custom format. |
Changelog
| Version | Description |
|---|---|
| 0.71 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/the_category