如何获取最新wordpress音频媒体上传的id。原因是我想使用音频封面图像/特色图像作为后期特色图像。我是否需要检索音频中缩略图的ID。
我尝试了下面的代码,但返回了错误
$attachments = get_posts( array(
\'post_type\' => \'attachment\',
\'posts_per_page\' => 1,
\'post_status\' => null,
\'post_mime_type\' => \'audio\'
) );
foreach ( $attachments as $attachment ) {
$post_id = get_post_thumbnail_id( $attachment->ID);
}