term_description( int $term, null $deprecated = null )
Retrieve term description.
Parameters
- $term
-
(Optional) Term ID. Will use global term ID by default.
- $deprecated
-
(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 |
---|---|
WP-4.9.2 | The $taxonomy parameter was deprecated. |
WP-2.8.0 | Introduced. |