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)
  • (int) $term Optional. Term ID. Defaults to the current term ID.
    Erforderlich: Nein
    Standard:
  • (null) $deprecated Deprecated. Not used.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (string) Term description, if available.
Definiert in:
Codex:
Changelog:
  • 4.9.2

Retrieves term 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;
}