Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_route_for_term

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

Line Code
3143
3144      /**
3145       * Filters the REST API route for a term.
3146       *
3147       * @since 5.5.0
3148       *
3149       * @param string  $route The route path.
3150       * @param WP_Term $term  The term object.
3151       */
3152      return apply_filters( 'rest_route_for_term', $route, $term );
3153 }
3154
3155 /**
3156  * Gets the REST API route for a taxonomy.
3157  *
3158  * @since 5.9.0
3159  *
3160  * @param string $taxonomy Name of taxonomy.
3161  * @return string The route path with a leading slash for the given taxonomy.