Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_route_for_taxonomy_items

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
3184
3185      /**
3186       * Filters the REST API route for a taxonomy.
3187       *
3188       * @since 5.9.0
3189       *
3190       * @param string      $route    The route path.
3191       * @param WP_Taxonomy $taxonomy The taxonomy object.
3192       */
3193      return apply_filters( 'rest_route_for_taxonomy_items', $route, $taxonomy );
3194 }
3195
3196 /**
3197  * Gets the REST route for the currently queried object.
3198  *
3199  * @since 5.5.0
3200  *
3201  * @return string The REST route of the resource, or an empty string if no resource identified.
3202  */