Advertisement
firoze

change color every second

May 26th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // change color every second \\ keep this code into your theme functions.php
  2.  
  3. function color_change_in_second(){
  4. ?>
  5. <style>
  6. body{background-color:#<?php echo date('shi');?>}
  7. </style>
  8. <?php
  9.  
  10. }
  11. add_action('wp_head','color_change_in_second');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement