Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Created March 26, 2022 06:48
Show Gist options
  • Save Asikur22/ec3ccb375feb5bb3aa3a8851f984593a to your computer and use it in GitHub Desktop.
Save Asikur22/ec3ccb375feb5bb3aa3a8851f984593a to your computer and use it in GitHub Desktop.
Randomly Change Background Color in WordPress
function wpb_bg() {
$rand = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
$color = '#'.$rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)]. $rand[rand(0,15)].$rand[rand(0,15)].$rand[rand(0,15)];
echo $color;
}
// Use
<body <?php body_class(); ?> style="background-color:<?php wpb_bg();?>">>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment