Собственно, имеется PHP скрипт на Wordpress шаблоне.
Что он делает?
Code
<style type="text/css">
<?php
$this_alt_header = get_option('x23_alt_header');
if ($this_alt_header==1) : ?>
body { background: #000 url(<?php bloginfo('template_url');?>/images/onetop.jpg) no-repeat top center;}
<?php elseif($this_alt_header==2) : ?>
body { background: #000 url(<?php bloginfo('template_url');?>/images/onetop2.jpg) no-repeat top center;}
<?php elseif($this_alt_header==3) : ?>
body { background: #000 url(<?php bloginfo('template_url');?>/images/onetop3.jpg) no-repeat top center;}
<?php else : ?>
body { background: #000 url(<?php bloginfo('template_url');?>/images/onetop.jpg) no-repeat top center;}
<?php endif; ?>
</style>