• Does anybody would want to check this… I´m trying to show an slide in the first page of a blog and hide it in the rest, including the older posts pages…

    <?php if ( is_home()  ) {
    echo do_shortcode('[orbit-slider]');
    } else {
    
    if ( page()  ) {
    
    ?>
    
    <head>
    <style type="text/css">
    
    body {	background: #f4f5f7 url("/csjrsite/wp-content/themes/twentyten-child/images/bg2.jpg") repeat-x;}
    </style>
    </head>
    
    <?php } } else { ?>
    
    <head>
    <style type="text/css">
    
    body {	background: #f4f5f7 url("/csjrsite/wp-content/themes/twentyten-child/images/bg2.jpg") repeat-x;}
    </style>
    </head>
    
    <?php } ?>

The topic ‘Some php help for a nested php’ is closed to new replies.