wp_get_object_terms хук-фильтр . WP 2.8.0
Filters the terms for a given object or objects.
The $taxonomies parameter passed to this filter is formatted as a SQL fragment. The 'get_object_terms' filter is recommended as an alternative.
Использование
add_filter( 'wp_get_object_terms', 'filter_function_name_9226', 10, 4 ); function filter_function_name_9226( $terms, $object_ids, $taxonomies, $args ){ // filter... return $terms; }
- $terms(WP_Term[])
- Array of terms for the given object or objects.
- $object_ids(строка)
- Comma separated list of object IDs for which terms were retrieved.
- $taxonomies(строка)
- SQL fragment of taxonomy names from which terms were retrieved.
- $args(массив)
- Array of arguments for retrieving terms for the given object(s). See wp_get_object_terms() for details.
Список изменений
С версии 2.8.0 | Введена. |
Где вызывается хук
wp-includes/taxonomy.php 2153
return apply_filters( 'wp_get_object_terms', $terms, $object_ids, $taxonomies, $args );
Где используется хук в ядре WordPress
wp-includes/taxonomy.php 506
add_filter( 'wp_get_object_terms', '_post_format_wp_get_object_terms' );