WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
4305 | */ |
4306 | function get_ancestors( $object_id = 0, $object_type = '', $resource_type = '' ) { |
4307 | $object_id = (int) $object_id; |
4308 |
|
4309 | $ancestors = array(); |
4310 |
|
4311 | if ( empty( $object_id ) ) { |
4312 |
|
4313 | /** This filter is documented in wp-includes/taxonomy.php */ |
4314 | return apply_filters( 'get_ancestors', $ancestors, $object_id, $object_type, $resource_type ); |
4315 | } |
4316 |
|
4317 | if ( ! $resource_type ) { |
4318 | if ( is_taxonomy_hierarchical( $object_type ) ) { |
4319 | $resource_type = 'taxonomy'; |
4320 | } else if ( post_type_exists( $object_type ) ) { |
4321 | $resource_type = 'post_type'; |
4322 | } |
4323 | } |
Line | Code |
4336 | * Filter a given object's ancestors. |
4337 | * |
4338 | * @since 3.1.0 |
4339 | * |
4340 | * @param array $ancestors An array of object ancestors. |
4341 | * @param int $object_id Object ID. |
4342 | * @param string $object_type Type of object. |
4343 | * @param string $resource_type Type of resource $object_type is. |
4344 | */ |
4345 | return apply_filters( 'get_ancestors', $ancestors, $object_id, $object_type ); |
4346 | } |
4347 |
|
4348 | /** |
4349 | * Returns the term's parent's term_ID |
4350 | * |
4351 | * @since 3.1.0 |
4352 | * |
4353 | * @param int $term_id |
4354 | * @param string $taxonomy |