Skip to content

Instantly share code, notes, and snippets.

@fchouquet
Created February 3, 2012 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fchouquet/1730474 to your computer and use it in GitHub Desktop.
Save fchouquet/1730474 to your computer and use it in GitHub Desktop.
<!-- 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