默認(rèn)手機(jī)版視頻功能是使用了code 在手機(jī)版上是看不到的 會(huì)顯示[media].....[/media]
我們可以修改為正常顯示的方法。
首先我們打開(kāi)source/function/function_discuzcode.php
-
$message = preg_replace("/\[flash(=(\d+),(\d+))?\]\s*([^\[\<\r\n]+?)\s*\[\/flash\]/is", "[media]\\4[/media]", $message);
復(fù)制代碼
修改為
-
$message = preg_replace("/\[flash(=(\d+),(\d+))?\]\s*([^\[\<\r\n]+?)\s*\[\/flash\]/", "<embed src='\\4' allowFullScreen='true' quality='high' width='260' height='150' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash'></embed>", $message);
復(fù)制代碼
保存后手機(jī)版的discuz 也能播放網(wǎng)絡(luò)視頻了,代碼位置大概在206行左右。