Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: ajax_query_attachments_args

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
3071       * Filters the arguments passed to WP_Query during an Ajax
3072       * call for querying attachments.
3073       *
3074       * @since 3.7.0
3075       *
3076       * @see WP_Query::parse_query()
3077       *
3078       * @param array $query An array of query variables.
3079       */
3080      $query             = apply_filters( 'ajax_query_attachments_args', $query );
3081      $attachments_query = new WP_Query( $query );
3082      update_post_parent_caches( $attachments_query->posts );
3083
3084      $posts       = array_map( 'wp_prepare_attachment_for_js', $attachments_query->posts );
3085      $posts       = array_filter( $posts );
3086      $total_posts = $attachments_query->found_posts;
3087
3088      if ( $total_posts < 1 ) {
3089           // Out-of-bounds, run the query again without LIMIT for total count.