wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
term_description › WordPress Function
Seit2.8.0
Veraltetn/v
› term_description ( $term = 0, $deprecated = null )
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: | |
Changelog: |
|
Retrieves term description.
Ähnliche Funktionen: tag_description, category_description, the_author_description, the_archive_description, wp_sidebar_description
Quellcode
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; }