使用 wordpress 的 embed 功能快速插入优酷视频-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 6315249
  • 博文数量: 162
  • 博客积分: 3600
  • 博客等级: 中校
  • 技术积分: 10366
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-19 11:23
个人简介

专注系统运维、网络架构,研究技术凯发app官方网站的解决方案,记录我的思想轨迹、工作学习、生活和关注的领域

文章分类
文章存档

2014年(2)

2013年(16)

2012年(27)

2011年(117)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: 系统运维

2011-06-04 12:22:42

在 wordpress 2.9 中新增的 的功能,它能让你通过直接发布一个 url(需要单独一行,纯文本,不带链接才行),就能把这个 url 中的视频显示到 wordpress 博客上,并且会根据博客的布局调整视频的大小。

但是默认不支持国内的优酷这个视频分享网站,我根据 wordpress 的 embeds 接口制作了下面的插件,让你的 wordpress 博客通过一行链接就能发布优酷的视频,而无需去查找优酷的复杂而麻烦的 flash 嵌入代码。

functionwp_embed_handler_youku($matches, $attr, $url, $rawattr){
    
// if the user supplied a fixed width and height, use it
    
if( !empty($rawattr['width']) && !empty($rawattr['height'])){
        
$width  = (int)$rawattr['width'];
        
$height = (int)$rawattr['height'];
    
}else{
        
list($width, $height) = wp_expand_dimensions(480, 400, $attr['width'], $attr['height']);
    
}
 
    
returnapply_filters('embed_youku', '' . esc_attr($matches[1]) . '/v.swf" quality="high" width="' . esc_attr($width) . '" height="' . esc_attr($height) . '" align="middle" allowscriptaccess="samedomain" type="application/x-shockwave-flash">', $matches, $attr, $url, $rawattr);
 
}
wp_embed_register_handler('youku', '#(.*?).html#i', 'wp_embed_handler_youku');

把上面这段代码放到当前主题的 functions.php 文件中,或者添加一个插件头,上传到插件目录下,激活即可。

安装好之后,你只需要把优酷视频的链接直接贴入到 wordpress 日志内容中即可显示视频,假设其中 xxxxxxx 是视频的 id,那么插入方法是:

xxxxxxxxxxxxx.html

或者

[ embed]xxxxxxxxxxxxx.html[/embed]


文字转载来自:

阅读(5291) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图