欢迎光临
我们一直在努力

WordPress 获取文章的所有附件

建站超值云服务器,限时71元/月

在 WordPress 项目开发中,也许我们需要获取某篇文章的附件,在 WordPress 3.6 以前的版本中,我们可以使用 get_children() 函数来获取,比如:

1
2
3
4
5
6
7
8
9
10
$args = array(
	'post_parent' => $post->ID,
	'post_type' => 'attachment',
	'post_mime_type' => 'image',
	'posts_per_page' => -1,
	'orderby' => 'menu_order',
	'order' => 'ASC',
);
 
$attachments = get_children( $args );

$args = array( ‘post_parent’ => $post->ID, ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘image’, ‘posts_per_page’ => -1, ‘orderby’ => ‘menu_order’, ‘order’ => ‘ASC’, ); $attachments = get_children( $args );

更多详情请阅读 get_children() 官方文档。

WordPress 3.6 新增了一个新函数 get_attached_media() ,让我们获取附件变得更加简单,比如:

获取所有类型的附件:

1
$attachments = get_attached_media( '', $post->ID );

$attachments = get_attached_media( ”, $post->ID );

获取图片附件:

1
$attachments = get_attached_media( 'image', $post->ID );

$attachments = get_attached_media( ‘image’, $post->ID );

获取音频附件:

1
$attachments = get_attached_media( 'audio', $post->ID );

$attachments = get_attached_media( ‘audio’, $post->ID );

获取视频附件:

1
$attachments = get_attached_media( 'video', $post->ID );

$attachments = get_attached_media( ‘video’, $post->ID );

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » WordPress 获取文章的所有附件
分享到: 更多 (0)