在wordpress中获取媒体元数据

时间:2014-08-04 15:56:36

标签: wordpress metadata attachment

我希望获得媒体(音频/视频)元数据,如持续时间等,这些元数据会添加到wordpress帖子中。 我在循环中尝试了这段代码

$args = array(
    'post_type' => 'attachment',
    'numberposts' => -1,
    'post_parent' => $post->ID,
);
$attachments = get_posts($args);
foreach ( $attachments as $attachment ){
    $a = wp_get_attachment_id3_keys($attachment->ID );
    $b = wp_read_video_metadata(wp_get_attachment_url($attachment->ID));
<?php echo $a['genre'];
    echo $b['duration'];

但是,只有&#34;流派&#34;和$ b什么都没有! 谁能救我一些大麻烦?

0 个答案:

没有答案