今天从自立博客那看到这个通过主题functions.php添加短代码实现Flash音乐播放器,方法如下:
然后:上传到 wp-content/theme/主题目录/
最后:在Wordpress 在用主题的 functions.php 中间位置 添加如下函数:
/**添加 flash player */ function myplayer($atts, $content=null){ extract(shortcode_atts(array("auto"=>'no',"loop"=>'no'),$atts)); return '<embed src="'.get_bloginfo("template_url").'/player.swf?soundFile='.$content.'&bg=0xeeeeee&leftbg=0x357dce&lefticon=0xFFFFFF&rightbg=0xf06a51&rightbghover=0xaf2910&righticon=0xFFFFFF&righticonhover=0xffffff&text=0x666666&slider=0x666666&track=0xFFFFFF&border=0x666666&loader=0x9FFFB8&loop='.$loop.'&autostart='.$auto.'" type="application/x-shockwave-flash" wmode="transparent" allowscriptaccess="always" width="290" height="30">'; } add_shortcode('music','myplayer');
写作时调用代码:[mu sic]音乐绝对地址---我用的微软sky网盘[/m usic] 去掉空格
评论