wpseek.com
A WordPress-centric search engine for devs and theme authors
term_description › WordPress Function
Since2.8.0
Deprecatedn/a
› term_description ( $term = 0, $deprecated = null )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Retrieves term description.
Related Functions: tag_description, category_description, the_author_description, the_archive_description, wp_sidebar_description
Source
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; }