本文最后更新于 607 天前,其中的信息可能已经有所发展或是发生改变。
首先用电脑打开要分享的B战视频,复制它的BV号
在主题中修改主题文件functions.php
添加以下代码
/*
* 添加B站视频自适应
*
*/
add_shortcode("bvideo","shortcode_bvideo");
function shortcode_bvideo($attr){
if(!key_exists('bv',$attr))
return;
else{
if(key_exists('page',$attr))
$page=$attr['page'];
else
$page=1;
$bvid=$attr['bv'];
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.bilibili.com/x/web-interface/archive/stat?bvid=".$attr['bv']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$data = curl_exec($ch);
$data=json_decode($data,true);
if($data['code']==0)
$aid=$data['data']['aid'];
curl_setopt($ch,CURLOPT_URL,'https://api.bilibili.com/x/player/pagelist?bvid='.$attr['bv']);
$data=curl_exec($ch);
curl_close($ch);
$data=json_decode($data,true);
if($data['code']==0)
$cid=$data['data'][$page-1]['cid'];
return '<div style="position:relative;width:100%;height:100%;padding:30%;"><iframe src="//player.bilibili.com/player.html?aid='.$aid.'&bvid='.$bvid.'&cid='.$cid.'&page='.$page.'&high_quality=1&danmaku=1" frameborder="no" scrolling="no" allowfullscreen="allowfullscreen" style="position:absolute;width:100%;height:100%;left:0;top:0;"></iframe></div>';
}
}
其中src的参数
aid=244678027 表示视频的av号
bvid=BV1rv411C77z 表示视频的BV号
cid=236681451 一般和page一起用,p数变化cid也跟着变化,不过不填也可以
page=1 表示显示的p数
high_quality=1 表示以最高清晰度播放,不登录最高720p,目前还没有解决方法,只能转到B站看
danmaku=1 表示显示弹幕
然后在WordPress文章编写界面选择简码
输入
[bvideo bv=BV1jA411f7Mc]