为了给我们的博客文章内容丰富起来,有些时候我们需要给 WordPress 的文章内添加一些视频、图片和音乐,而今天介绍的 WordPress 教程是如何在 WordPress 通过短代码实现漂亮的 mp3 音乐播放器功能!

20131203093532

首先介绍第一款播放器的实现方法是将下面代码加入到 WordPress 主题文件的 function.php 内

  1.   
  2. function doubanplayer($atts$content=null){  
  3.     extract(shortcode_atts(array("auto"=>'0'),$atts));  
  4.     return '<embed src="'.get_bloginfo("template_url").'/shortcode/doubanplayer.swf?url='.$content.'&amp;autoplay='.$auto.'" type="application/x-shockwave-flash" wmode="transparent" allowscriptaccess="always" width="400" height="30">';  
  5.     }  
  6. add_shortcode('music','doubanplayer');  

使用方法是在文章编辑的时候:

  1. 通用音乐播放器    
  2. 默认不自动播放:[music]http:  
  3. 自动播放:   [music auto=1]http:  

第二款播放器的实现方法是将下面代码加入到 WordPress 主题文件的 function.php 内

  1.   
  2. function mp3link($atts, $content=null){  
  3.     extract(shortcode_atts(array("auto"=>'0',"replay"=>'0',),$atts));     
  4.     return '<embed src="'.get_bloginfo("template_url").'/shortcode/dewplayer.swf?mp3='.$content.'&amp;autostart='.$auto.'&amp;autoreplay='.$replay.'" wmode="transparent" height="20" width="240" type="application/x-shockwave-flash" />';  
  5.     }  
  6. add_shortcode('mp3','mp3link');   

使用方法是在文章编辑的时候:

  1. Mp3 专用播放器       
  2. 默认不循环不自动播放:[mp3]http:  
  3. 自动播放:   [mp3 auto="1"]http:  
  4. 循环播放:   [mp3 replay="1"]http:  
  5. 自动及循环播放:[mp3 auto="1" replay="1"]http:  

最后将音乐播放器的 swf 文件上传到 WordPress 主题文件夹的 shortcode 文件内,没有的自建即可!详情如下图

20131203094137

最后小 2 提供两个播放器 swf 的下载地址哈