给你的Typecho添加一个音乐电台单页
1年前
这款音乐播放器是别人写的,我也只是移植到了typecho上面,如果想要用于商业用途请自行联系相关的开发者(html模板地址:https://github.com/zhheo/HeoMusic)。
把下面的代码放到当前使用的模板相关地方(例如:functions.php),添加这段代码后就可以在模板设置中控制单页中相关参数。
function themeConfig($form)
{
$musicid= new \Typecho\Widget\Helper\Form\Element\Text(
'musicid',
null,
null,
_t('播放列表的id'),
_t('可以从音乐歌单分享的链接中获取,例如`https://y.qq.com/n/ryqq/playlist/8668419170`中,id为`8668419170`')
);
$form->addInput($musicid);
$musicapp= new \Typecho\Widget\Helper\Form\Element\Select('musicapp', array('netease' => '网易云音乐','tencent' => '腾讯','kugou' => '酷狗','xiami' => '小米音乐','baidu' => '百度音乐'),'netease','音乐服务商','必须选择其中一个平台)');
$form->addInput($musicapp->multiMode());
$musicclass= new \Typecho\Widget\Helper\Form\Element\Select('musicclass', array('song' => '单曲','playlist' => '歌单','album' => '专辑','search' => '搜索结果','artist' => '歌手'),'playlist','列表的类型','必须选择其中一个类型)');
$form->addInput($musicclass->multiMode());
}
把下面的文件上传到你的模板中即可
朗科小苏
5个月前 . LV.0
我来测试一下试试水
小归客
1年前 . LV.1
这个可以
山猫日记
1年前 . LV.0
我来试下会不会搞到我的网站。
陶小桃Blog
1年前 . LV.0
看看
寻梦xunm
1年前 . LV.0
@陶小桃Blog
随便看
阿洋
1年前 . LV.0