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
2221
2222      /**
2223       * Filters the REST API route for a term.
2224       *
2225       * @since 5.5.0
2226       *
2227       * @param string  $route The route path.
2228       * @param WP_Term $term  The term object.
2229       */
2230      return apply_filters( 'rest_route_for_term', $route, $term );
2231 }
2232
2233 /**
2234  * Gets the REST route for the currently queried object.
2235  *
2236  * @since 5.5.0
2237  *
2238  * @return string The REST route of the resource, or an empty string if no resource identified.
2239  */