W3cubDocs

/WordPress

wp_edit_attachments_query( array|false $q = false )

Executes a query for attachments. An array of WP_Query arguments can be passed in, which will override the arguments set by this function.

Parameters

$q

(array|false) (Optional) Array of query variables to use to build the query or false to use $_GET superglobal.

Default value: false

Return

(array)

Source

File: wp-admin/includes/post.php

function wp_edit_attachments_query( $q = false ) {
	wp( wp_edit_attachments_query_vars( $q ) );

	$post_mime_types       = get_post_mime_types();
	$avail_post_mime_types = get_available_post_mime_types( 'attachment' );

	return array( $post_mime_types, $avail_post_mime_types );
}

Changelog

Version Description
2.5.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_edit_attachments_query