给WordPress添加FLV播放器

实现方法:

  1. 下载 flvplayer.swf 播放器:http://www.hzlzh.com/up/flvplayer.swf
  2. 把播放器放到 当前使用主题目录  即 wp-content/theme/****;
  3. 在主题的 functions.php 中添加如下代码即可;
/**FLV player */
function flvplayer($atts, $content=null){
extract(shortcode_atts(array("width"=>'460',"height"=>'330'),$atts));
return '<embed width="'.$width.'" height="'.$height.'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" allowfullscreen="true" src="'.get_bloginfo("template_url").'/flvplayer.swf?IsAutoPlay=0&IsContinue=1&BarPosition=1&IsShowBar=1&vcastr_file='.$content.'">
';}
add_shortcode('mv','flvplayer');

以后写文章的时候,调用使用[m v] [/m v]标签,当然可以传出尺寸的参数  即 [m v width=”600″ height=”300″]  url [/m v]

思章老师

认准了方向,就要勇敢地走下去,十年磨一剑,我相信,只要坚持,一切都有可能。

相关日志

  1. 没有图片

    2010.06.18

    WordPress 3.0 繁体中文正式版发布

    就在小百度刚刚发布WordPress 3.0…

  2. 没有图片

    2010.05.12

    兼容WordPress版本的文件上传插件:WP Easy Uploader

    蓦然一直苦苦寻找一款可以在WordPress…

  3. 没有图片

    2010.06.05

    最强大的WordPress滑块插件:Content Slider by SliderDerk

    大家应该用过很多jQuery Slider滑…

  4. 没有图片

    2010.09.14

    WordPress 3.0 启用多站功能教程

    WordPress 3.0的多站点模式既可以…

  5. 没有图片

    2010.05.11

    法籍华人高行健与诺贝尔文学奖

    高行健:法籍华人,唯一一个获得诺贝尔文学奖的…

  6. 没有图片

    2010.12.26

    WordPress点击统计插件WP-PostViews一直为0的原因之一

    很多朋友在使用WordPress点击统计插件…

评论

还没有评论。