get_term_field( string $field, int|WP_Term $term, string $taxonomy = , string $context = ‘display’ ): string|int|null|WP_Error

Gets sanitized term field.

Description

The function is for contextual reasons and for simplicity of usage.

See also

Parameters

$fieldstringrequired
Term field to fetch.
$termint|WP_Termrequired
Term ID or object.
$taxonomystringoptional
Taxonomy name.

Default:''

$contextstringoptional
How to sanitize term fields. Look at sanitize_term_field() for available options.
Default 'display'.
More Arguments from sanitize_term_field( … $context )Context in which to sanitize the term field.
Accepts 'raw', 'edit', 'db', 'display', 'rss', 'attribute', or 'js'. Default 'display'.

Default:'display'

Return

string|int|null|WP_Error Will return an empty string if $term is not an object or if $field is not set in $term.

Source

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 );
}

Changelog

VersionDescription
4.4.0The $taxonomy parameter was made optional. $term can also now accept a WP_Term object.
2.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.