Forums

Exlude div from certain pages (2 posts)

  1. therealOC
    Member
    Posted 3 years ago #

    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?

  2. MichaelH
    Volunteer
    Posted 3 years ago #

    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';
    }
    ?>

Topic Closed

This topic has been closed to new replies.

About this Topic