wenn ich das richtig verstehe wär das hier für mehrere kubrickdg:
<style type="text/css" media="screen">
<?php if (is_page('bla')) { ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg_bla.jpg") repeat-y top; border: none; }
<?php } elseif (is_page('blub')) { ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg_blub.jpg") repeat-y top; border: none; }
<?php } else { ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg.jpg") repeat-y top; border: none; }
<?php } ?>
</style>
habe dies nun für mein blog ändern wollen, und habe mir dies wie folgt angepasst:
<style type="text/css" media="screen">
<?php if (is_page('27,28')) { ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg_gallery.jpg") repeat-y top; border: none; }
<?php } else { ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg.jpg") repeat-y top; border: none; }
<?php } ?>
</style>
Ich bin mir momentan noch nicht im klahren für die 3 Begriffe für eine Bedeutung haben (if,elseif,else)?
Möchte für die page ID 27,28 einfach eine andere kubrickbg.
kann mir da nochmal jemand zu Hilfe kommen? irgendwie möchte dies mit den page ID's noch nicht so wirklich klappen!