wpseek.com
				Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
			get_term_field › WordPress Function
Seit2.3.0
Veraltetn/v
› get_term_field ( $field, $term, $taxonomy = '', $context = 'display' )
| Parameter: (4) | 
 | 
| Siehe: | |
| Gibt zurück: | 
 | 
| Definiert in: | 
 | 
| Codex: | |
| Changelog: | 
 | 
Gets sanitized term field.
The function is for contextual reasons and for simplicity of usage.Ähnliche Funktionen: get_post_field, get_term_children, _get_term_children, get_the_id, get_term_feed_link
	Quellcode
function get_term_field( $field, $term, $taxonomy = '', $context = 'display' ) {
	$term = get_term( $term, $taxonomy );
	if ( is_wp_error( $term ) ) {
		return $term;
	}
	if ( ! is_object( $term ) ) {
		return '';
	}
	if ( ! isset( $term->$field ) ) {
		return '';
	}
	return sanitize_term_field( $field, $term->$field, $term->term_id, $term->taxonomy, $context );
}