ajax_query_attachments_args
Filters the arguments passed to WP_Query during an Ajax call for querying attachments.
Description
Parameters (1)
- 0. $videopress_ajax_query_attachments_args (string) =>
'videopress_ajax_query_attachments_args'
- The videopress ajax query attachments args.
Usage
- To run the hook, copy the example below.
- $videopress_ajax_query_attachments_args = apply_filters( 'ajax_query_attachments_args', $videopress_ajax_query_attachments_args );
- if ( !empty( $videopress_ajax_query_attachments_args ) ) {
- // 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( $videopress_ajax_query_attachments_args ) {
- // make filter magic happen here...
- return $videopress_ajax_query_attachments_args;
- };
- // 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).
- /modules/videopress/editor-media-view.php
- add_filter( 'ajax_query_attachments_args', 'videopress_ajax_query_attachments_args' );