上传的图像、视频等以“附件”类型的帖子形式存储;使用get_posts( )
使用正确的参数。
试试这个;代码通过所有附件循环并显示它们:
$args = array(
\'post_type\' => \'attachment\',
\'numberposts\' => -1,
\'post_status\' => null,
\'post_parent\' => null, // any parent
\'post_mime_type\' => \'YOUR-POST-MIME-TYPE\'
);
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $post ) {
setup_postdata( $post );
the_title( );
the_attachment_link( $post->ID, false );
the_excerpt( );
}
}
在哪里
YOUR-POST-MIMET-YPE
是您要查找的mime类型。
完全或部分mime类型,例如图像、视频、视频/mp4,与帖子的post\\u mime\\u type字段匹配
所以你应该试试video
.
您也可以使用array( \'video\', \'another-mime-type\' )
对于多个mime类型。