wp_edit_attachments_query()WP 2.5.0

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

Хуков нет.

Возвращает

Массив. Array containing the post mime types and available post mime types.

Использование

wp_edit_attachments_query( $q );
$q(массив|false)
Array of query variables to use to build the query.
По умолчанию: $_GET superglobal

Список изменений

С версии 2.5.0 Введена.

Код wp_edit_attachments_query() WP 7.0.2

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 );
}