term_description( int $term, null $deprecated = null )
Retrieve term description.
Description
Parameters
- $term
-
(int) (Optional) Term ID. Will use global term ID by default.
- $deprecated
-
(null) (Optional) Deprecated argument.
Default value: null
Return
(string) Term description, available.
Source
File: wp-includes/category-template.php
function term_description( $term = 0, $deprecated = null ) { if ( ! $term && ( is_tax() || is_tag() || is_category() ) ) { $term = get_queried_object(); if ( $term ) { $term = $term->term_id; } } $description = get_term_field( 'description', $term ); return is_wp_error( $description ) ? '' : $description; }
Changelog
Version | Description |
---|---|
4.9.2 | The $taxonomy parameter was deprecated. |
2.8.0 | Introduced. |
The default usage returns the description of the current queried term.
Displays a description of the post tag ID 28.