get_the_terms хук-фильтр . WP 3.1.0
Filters the list of terms attached to the given post.
Использование
add_filter( 'get_the_terms', 'filter_function_name_2303', 10, 3 ); function filter_function_name_2303( $terms, $post_id, $taxonomy ){ // filter... return $terms; }
- $terms(WP_Term[]/WP_Error)
- Array of attached terms, or WP_Error on failure.
- $post_id(число)
- Post ID.
- $taxonomy(строка)
- Name of the taxonomy.
Список изменений
С версии 3.1.0 | Введена. |
Где вызывается хук
get_the_terms
wp-includes/category-template.php 1295
$terms = apply_filters( 'get_the_terms', $terms, $post->ID, $taxonomy );
Где используется хук в ядре WordPress
wp-includes/category-template.php 595
add_filter( 'get_the_terms', '_wp_preview_terms_filter', 10, 3 );