Last active
August 29, 2015 14:24
-
-
Save lvwzhen/5fafd10576aad7dee1d3 to your computer and use it in GitHub Desktop.
通过ID添加优酷视频和土豆视频
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 优酷 --> | |
<?php | |
if(get_field('youku-id')) | |
{ | |
echo '<div id="youkuplayer"></div>'; | |
echo '<script type="text/javascript" src="http://player.youku.com/jsapi"></script>'; | |
} | |
?> | |
<script type="text/javascript"> | |
player = new YKU.Player('youkuplayer',{ | |
client_id: 'db28698382d53e23', | |
vid: '<?php echo get_field('youku-id') ?>', | |
autoplay: true | |
}); | |
</script> | |
<!-- 土豆 --> | |
<?php if(get_field('tudou-id')) | |
{ | |
echo '<iframe src="http://www.tudou.com/programs/view/html5embed.action?code='.get_field('tudou-id').'&autoPlay=true&playType=AUTO" width="100%" height="600px" frameborder="0" scrolling="no" ></iframe>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment