Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_ancestors

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
4953  */
4954 function get_ancestors( $object_id = 0, $object_type = '', $resource_type = '' ) {
4955      $object_id = (int) $object_id;
4956
4957      $ancestors = array();
4958
4959      if ( empty( $object_id ) ) {
4960
4961           /** This filter is documented in wp-includes/taxonomy.php */
4962           return apply_filters( 'get_ancestors', $ancestors, $object_id, $object_type, $resource_type );
4963      }
4964
4965      if ( ! $resource_type ) {
4966           if ( is_taxonomy_hierarchical( $object_type ) ) {
4967                $resource_type = 'taxonomy';
4968           } elseif ( post_type_exists( $object_type ) ) {
4969                $resource_type = 'post_type';
4970           }
4971      }
 
Line Code
4985       *
4986       * @since 3.1.0
4987       * @since 4.1.1 Introduced the `$resource_type` parameter.
4988       *
4989       * @param int[]  $ancestors     An array of IDs of object ancestors.
4990       * @param int    $object_id     Object ID.
4991       * @param string $object_type   Type of object.
4992       * @param string $resource_type Type of resource $object_type is.
4993       */
4994      return apply_filters( 'get_ancestors', $ancestors, $object_id, $object_type, $resource_type );
4995 }
4996
4997 /**
4998  * Returns the term's parent's term ID.
4999  *
5000  * @since 3.1.0
5001  *
5002  * @param int    $term_id  Term ID.
5003  * @param string $taxonomy Taxonomy name.