wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



get_term_field › WordPress Function

Od2.3.0
Przestarzałyn/a
get_term_field ( $field, $term, $taxonomy = '', $context = 'display' )
Parametry: (4)
  • (string) $field Term field to fetch.
    Wymagane: Tak
  • (int|WP_Term) $term Term ID or object.
    Wymagane: Tak
  • (string) $taxonomy Optional. Taxonomy name. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
  • (string) $context Optional. How to sanitize term fields. Look at sanitize_term_field() for available options. Default 'display'.
    Wymagane: Nie
    Domyślny: 'display'
Zobacz:
Powrót:
  • (string|int|null|WP_Error) Will return an empty string if $term is not an object or if $field is not set in $term.
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 4.4.0

Gets sanitized term field.

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


Źródło

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