函数原型
get_attached_media( string $type, int|WP_Post $post ): WP_Post[]
函数描述
Retrieves media attached to the passed post.
是否弃用
未弃用
函数参数
-
$type
string
Required - Mime type.
-
$post
int|WP_Post
Optional - Post ID or WP_Post object. Default is global $post.
函数返回值
WP_Post[] Array of media attached to the given post.
函数位置
File: wp-includes/media.php.
函数源码
function get_attached_media( $type, $post = 0 ) {
$post = get_post( $post );
if ( ! $post ) {
return array();
}
$args = array(
'post_parent' => $post->ID,
'post_type' => 'attachment',
'post_mime_type' => $type,
'posts_per_page' => -1,
'orderby' => 'menu_order',
'order' => 'ASC',
);
/**
* Filters arguments used to retrieve media attached to the given post.
*
* @since 3.6.0
*
* @param array $args Post query arguments.
* @param string $type Mime type of the desired media.
* @param WP_Post $post Post object.
*/
$args = apply_filters( 'get_attached_media_args', $args, $type, $post );
$children = get_children( $args );
/**
* Filters the list of media attached to the given post.
*
* @since 3.6.0
*
* @param WP_Post[] $children Array of media attached to the given post.
* @param string $type Mime type of the media desired.
* @param WP_Post $post Post object.
*/
return (array) apply_filters( 'get_attached_media', $children, $type, $post );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.6.0 | Introduced. |

