Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_pattern_directory_collection_params

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
366           );
367
368           /**
369            * Filter collection parameters for the block pattern directory controller.
370            *
371            * @since 5.8.0
372            *
373            * @param array $query_params JSON Schema-formatted collection parameters.
374            */
375           return apply_filters( 'rest_pattern_directory_collection_params', $query_params );
376      }
377
378      /*
379       * Include a hash of the query args, so that different requests are stored in
380       * separate caches.
381       *
382       * MD5 is chosen for its speed, low-collision rate, universal availability, and to stay
383       * under the character limit for `_site_transient_timeout_{...}` keys.
384       *