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
334           );
335
336           /**
337            * Filter collection parameters for the block pattern directory controller.
338            *
339            * @since 5.8.0
340            *
341            * @param array $query_params JSON Schema-formatted collection parameters.
342            */
343           return apply_filters( 'rest_pattern_directory_collection_params', $query_params );
344      }
345
346      /*
347       * Include a hash of the query args, so that different requests are stored in
348       * separate caches.
349       *
350       * MD5 is chosen for its speed, low-collision rate, universal availability, and to stay
351       * under the character limit for `_site_transient_timeout_{...}` keys.
352       *