我已经在wordpress中安装了jwplayer,并将其显示在单个页面中。php页面。。。按照我的方式,我需要在javascript和I中获得一个自定义字段;我没有运气在那里回应它。我知道你不能在javascript函数中直接运行PHP,因此我在这里问noob问题:)
<script type=\'text/javascript\'>
jwplayer("lbp-inline-href-1").setup({
\'flashplayer\': \'/wp-content/uploads/jw-player-plugin-for-wordpress/player/player.swf\',
\'image\': \'/wp-content/themes/sometheme/images/vid.png\',
\'file\': \'<?php echo get_post_meta($post->ID, \'video\', true); ?>\',
\'skin\': \'/wp-content/plugins/jw-player-plugin-for-wordpress/skins/skewd.zip\',
\'stretching\': \'exactfit\',
\'controlbar\': \'bottom\',
\'width\': \'640\',
\'height\': \'360\'
});
</script>
有没有可能
<?php echo get_post_meta($post->ID, \'video\', true); ?>
在那里运行文件路径?
谢谢你的建议。