将以下代码放在DOCTYPE-in标题上方。php:
<?php
$bg = array(\'bg-01.jpg\', \'bg-02.jpg\', \'bg-03.jpg\', \'bg-04.jpg\', \'bg-05.jpg\', \'bg-06.jpg\', \'bg-07.jpg\' ); // array of filenames
$i = rand(0, count($bg)-1); // generate random number size of the array
$selectedBg = "$bg[$i]"; // set variable equal to which random filename was chosen
?>
现在将此代码放入
<head>
在标题中。php
<style type="text/css">
body{
background: url(<?php echo bloginfo(\'stylesheet_directory\');?>/images/<?php echo $selectedBg; ?>) no-repeat;
}
</style>
路径
<?php echo bloginfo(\'stylesheet_directory\');?>/images/
指示您的随机图像将存储在“/图像”目录下的主题中。
关于这项技术的原始文章可以在CSS tricks.