我在 WordPress 和 jwplayer 中使用了任何东西。我的自定义帖子类型中有一个自定义字段,用于存储视频 URL 或嵌入代码。
这是我使用的循环,它显示视频 URL 或从滑块中的自定义字段嵌入代码
<ul id="slider">
<?php $the_slider = new WP_Query('post_type=product'); while($the_slider->have_posts()) : $the_slider->the_post(); ?>
<?php //if(has_post_thumbnail() ) { ?>
<li>
<?php if( get_field('video_preview'))
{
echo get_field('video_preview');
}?>
</li>
<?php endwhile; ?>
</ul>
我需要一些如何将 get_field 包装到 jwplayer 的 javascript 中,如下所示。我尝试了几种方法,但我认为 javascript 也被循环并且无法正常工作。如何创建一个循环以使用下面的 js 和上面的代码?
<script type="text/javascript">
jwplayer("myElement").setup({
file: "http://www.example.com/video.mp4",
width: "100%",
height: "315px"
});
</script>