返回介绍

wp_edit_attachments_query()

发布于 2017-09-11 11:54:44 字数 1767 浏览 1033 评论 0 收藏 0

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.


description


参数

$q

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

Default value: false


返回值

(array)


源代码

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

更新日志

Versiondescription
2.5.0Introduced.

相关函数

Uses

  • wp-admin/includes/post.php: wp_edit_attachments_query_vars()
  • wp-admin/includes/post.php: get_available_post_mime_types()
  • wp-includes/functions.php: wp()
  • wp-includes/post.php: get_post_mime_types()

Used By

  • wp-admin/includes/media.php: media_upload_library_form()
  • wp-admin/includes/class-wp-media-list-table.php: WP_Media_List_Table::prepare_items()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文