Created
February 3, 2012 14:40
-
-
Save fchouquet/1730474 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Custom background --> | |
<?php $background = of_get_option('custom_background'); | |
if ($background) { | |
if ($background['image']) { | |
echo '<style type="text/css" media="screen"> | |
body { background:url('.$background['image']. '); } | |
</style>'; | |
} else { | |
echo '<style type="text/css" media="screen"> | |
body { background:'.$background['color']. ' } | |
</style>'; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment