wpseek.com
A WordPress-centric search engine for devs and theme authors



get_term_field › WordPress Function

Since2.3.0
Deprecatedn/a
get_term_field ( $field, $term, $taxonomy = '', $context = 'display' )
Parameters: (4)
  • (string) $field Term field to fetch.
    Required: Yes
  • (int|WP_Term) $term Term ID or object.
    Required: Yes
  • (string) $taxonomy Optional. Taxonomy name. Default empty.
    Required: No
    Default: (empty)
  • (string) $context Optional. How to sanitize term fields. Look at sanitize_term_field() for available options. Default 'display'.
    Required: No
    Default: 'display'
See:
Returns:
  • (string|int|null|WP_Error) Will return an empty string if $term is not an object or if $field is not set in $term.
Defined at:
Codex:
Change Log:
  • 4.4.0

Gets sanitized term field.

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


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