欢迎光临
我们一直在努力

WordPress解决优酷、土豆视频移动端观看问题并自适应

建站超值云服务器,限时71元/月

本文目录
[隐藏]

  • 1函数代码
  • 2视频添加方法
  • 3效果浏览

虽然WordPress能直接插入优酷、土豆的视频但是无法在移动端观看,于是乎笨笨就开始各种折腾终于找到了合适的解决办法
另外在说一句支持移动端自适应哦

函数代码

在主题函数文件function.php里面添加以下代码即可,保证在最后一个?>之前就好了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//Youku
function wp_iframe_handler_youku($matches, $attr, $url, $rawattr) {
    if (wp_is_mobile()) {
        $height = 200;
    } else {
        $height = 485;
    }
    $iframe = '<iframe width=100% height=' . esc_attr($height) . 'px src="http://player.youku.com/embed/'%20. esc_attr($matches[1]) . '" frameborder=0 allowfullscreen></iframe>';
    return apply_filters('iframe_youku', $iframe, $matches, $attr, $url, $ramattr);
}
wp_embed_register_handler('youku_iframe', '#http://v.youku.com/v_show/id_(.*?).html#i', 'wp_iframe_handler_youku');
// Tudou
function wp_iframe_handler_tudou($matches, $attr, $url, $rawattr) {
    if (wp_is_mobile()) {
        $height = 200;
    } else {
        $height = 485;
    }
    $iframe = '<iframe width=100% height=' . esc_attr($height) . 'px src="http://www.tudou.com/programs/view/html5embed.action?code='%20. esc_attr($matches[1]) . '" frameborder=0 allowfullscreen></iframe>';
    return apply_filters('iframe_tudou', $iframe, $matches, $attr, $url, $ramattr);
}
wp_embed_register_handler('tudou_iframe', '#http://www.tudou.com/programs/view/(.*?)/#i', 'wp_iframe_handler_tudou');
//Remove zh_CN Default handler
wp_embed_unregister_handler('youku');
wp_embed_unregister_handler('tudou'

//Youku function wp_iframe_handler_youku($matches, $attr, $url, $rawattr) { if (wp_is_mobile()) { $height = 200; } else { $height = 485; } $iframe = ‘<iframe width=100% height=’ . esc_attr($height) . ‘px src=”http://player.youku.com/embed/’%20.%20esc_attr($matches[1])%20.%20′” frameborder=0 allowfullscreen></iframe>’; return apply_filters(‘iframe_youku’, $iframe, $matches, $attr, $url, $ramattr); } wp_embed_register_handler(‘youku_iframe’, ‘#http://v.youku.com/v_show/id_(.*?).html#i’, ‘wp_iframe_handler_youku’); // Tudou function wp_iframe_handler_tudou($matches, $attr, $url, $rawattr) { if (wp_is_mobile()) { $height = 200; } else { $height = 485; } $iframe = ‘<iframe width=100% height=’ . esc_attr($height) . ‘px src=”http://www.tudou.com/programs/view/html5embed.action?code=’%20.%20esc_attr($matches[1])%20.%20′” frameborder=0 allowfullscreen></iframe>’; return apply_filters(‘iframe_tudou’, $iframe, $matches, $attr, $url, $ramattr); } wp_embed_register_handler(‘tudou_iframe’, ‘#http://www.tudou.com/programs/view/(.*?)/#i’, ‘wp_iframe_handler_tudou’); //Remove zh_CN Default handler wp_embed_unregister_handler(‘youku’); wp_embed_unregister_handler(‘tudou’);

视频添加方法

虽然应该都知道但是还是说一下吧 直接在可视化下添加链接就OK http://v.youku.com/v_show/id_XMTQzOTU2NDg1Mg==.html

效果浏览

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » WordPress解决优酷、土豆视频移动端观看问题并自适应
分享到: 更多 (0)