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) |
|
See: | |
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Gets sanitized term field.
The function is for contextual reasons and for simplicity of usage.Related Functions: get_post_field, get_term_children, _get_term_children, get_the_id, get_term_feed_link
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 ); }