欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

wordpress随机背景

程序员文章站 2022-05-23 15:05:59
...

1. [PHP]代码

html,
body { height: 100%; }
 
img#bg {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}

<body>


<?php $random_image = rand(1, 5); /*let's choose random image...*/ ?>
<img id="bg" alt="" src="<?php bloginfo('stylesheet_directory');?>/images/<?php echo $random_image; ?>.jpg" />
相关标签: php