我是wordpress的新手。我用swiper以画廊风格的文章制作主题
我想添加视频(来自vimeo/youtube…)我实际上复制了一个图像的php代码only 陈列室 $args = array(
\'numberposts\' => -1, // Using -1 loads all posts
\'orderby\' => \'menu_order\', // This ensures images are in the order set in the page media manager
\'order\'=> \'ASC\',
\'post_mime_type\' => \'image\', // Make sure it doesn\'t pull other resources, like videos
\'post_parent\' => $post->ID, // Important part - ensures the associated images are loaded
\'post_status\' => null,
\'post_type\' => \'attachment\'
);
我想知道如何在那里添加视频。我尝试添加\'post_mime_type\' => \'image\', \'video\', \'iframe\',
但它什么也没做。有什么建议吗?
提前感谢:)