wp_edit_attachments_query

函数
wp_edit_attachments_query ( $q = false )
参数
  • (array|false) $q Optional. Array of query variables to use to build the query. Defaults to the `$_GET` superglobal.
    Required:
    Default: false
返回值
  • (array)
定义位置
相关方法
wp_edit_attachments_query_varswp_get_attachment_urlwp_get_attachment_id3_keyswp_get_attachment_imagewp_get_attachment_image_src
引入
2.5.0
弃用
-

wp_edit_attachments_query: 当在WordPress媒体库中构建附件的查询时,这个钩子被触发。这个钩子可以用来修改查询参数以定制显示的附件列表。

执行对附件的查询。一个WP_Query的参数数组可以被传入,它将覆盖这个函数所设置的参数。

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

常见问题

FAQs
查看更多 >