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?
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?
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';
}
?>This topic has been closed to new replies.