在带有JW Player(v5)的Wordpress(3.8.1)和JW插件(v2.1.2)中,我需要读取JWPlayer Plugin.
通常情况下JWPlayer Plugin 工作原理如下,通过短代码:
[jwplayer playlistid="1234"]
。。然后a
Video Player
将与其中的播放列表一起呈现在页面上。
我想做什么(定制)那么现在我该怎么做呢。。if i want to know (or pull out) the items inside a Playlist, 通过使用playlistid
或1234
.
让我们进入一个全新的页面(without using JWPlayer Shortcodes), 我会用我的own Custom Shortcode, 例如:
[playlistitems id="1234"]
(The
id
是JWPlayer“现有”播放列表的ID)
The New Page 将显示(仅列出)其中的项目,如:
- intro.mp4
- chapter-1.mp4
- chapter-6.mp4
- wrapup.mp4
。。像这样的
which needs to be done by my custom module (or) functions.
用更简单的话来说:
我想列出JWPlayer中的项目playlist
(通过使用其ID)JWPlayer如何读取播放列表。那么我可能需要克隆它的功能谢谢你。