• therealoc

    (@therealoc)


    Hey all, I want to be able to have a div in the header of my site (not in the header tags) to only show on certain pages. What is the best way of only writing (or excluding) the div on certain pages using php?

Viewing 1 replies (of 1 total)
  • MichaelH

    (@michaelh)

    Not sure if this is addressing your question, but how about:

    <?php
    if ( is_page() && $post->ID==3 ) {
    echo 'do my div stuff cause this is Page with an ID of 3';
    }
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Exlude div from certain pages’ is closed to new replies.