利用WordPress短代码插入无广告的优酷视频
注:本文的方法已失效,大家也不要到处找了,答案是没有。
之前写过一篇《引用优酷视频屏蔽广告代码》,其中的代码可以在Wordpress推荐阅读:WordPress支持上传SVG图片并显示在媒体库中博客转载和引用优酷视频时屏蔽掉广告,但每次都复制长长的代码,不仅麻烦而且会影响到文章的编辑。下面我们利用WordPress短代码(Shortcode API),采用方便简洁的形式插入无广告的视频。
一、将下面代码加到Wordpress主题functions.php模板文件中:
- function youku_video($atts, $content=null){
- return ‘<p style=“text-align: center;”><embed src=http://static.youku.com/v1.0.0149/v/swf/loader.swf?VideoIDS=’.$content.’ID&winType=adshow&isAutoPlay=true quality=”high” width=”610″ height=”460″ align=”middle” wmode=”transparent” allowScriptAccess=”never” allowNetworking=”internal” autostart=”0″ type=”application/x-shockwave-flash”></embed></p>’;
- }
- add_shortcode(‘youku’,’youku_video’);
其中: width=”610″ height=”460″ 是视频的大小,可根据需要修改。
二、编辑文章时在准备插入优酷视频的位置输入:
- {youku]XMjM2OTE3ODg4[/youku}