ajax_query_attachments_args
Filters the arguments passed to WP_Query during an Ajax call for querying attachments.
Description
Parameters (1)
- 0. $query (array)
- An array of query variables.
Usage
- To run the hook, copy the example below.
- $query = apply_filters( 'ajax_query_attachments_args', $query );
- if ( !empty( $query ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ajax_query_attachments_args callback
- function filter_ajax_query_attachments_args( $query ) {
- // make filter magic happen here...
- return $query;
- };
- // add the filter
- add_filter( 'ajax_query_attachments_args', 'filter_ajax_query_attachments_args', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ajax_query_attachments_args', 'filter_ajax_query_attachments_args', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-admin/includes/ajax-actions.php
- $query = apply_filters( 'ajax_query_attachments_args', $query );