2017-04-20 94 views
0

我目前使用Salient主題在Wordpress內創建網站。我已經使用預安裝的視頻背景功能將視頻添加到了背景中。這工作正常,但是可以包含多個視頻並在刷新時顯示隨機視頻嗎?還是有人知道一個插件允許這種類型的功能?多個背景視頻

非常感謝提前!

David。

回答

0

如果你可以寫一些代碼,你可以顯示隨機視頻作爲背景。首先,你必須創建視頻的鏈接數組是這樣的:

<?php 
    $bg = array('https://www.youtube.com/watch?v=38OUdsf', 'https://www.youtube.com/watch?v=38OUdsf'); // array of video links 

    $i = rand(0, count($bg)-1); // generate random number size of the array 
    $selectedBg = "$bg[$i]"; // get a random url 
?> 

,然後設置視頻:

<iframe src="<?php echo $selectedBg; ?>?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&playlist=W0LHTWG-UmQ" frameborder="0" allowfullscreen></iframe> 

這裏是how to create full page video.

爲例