Quote:
Originally Posted by Doctor Feelgood
but then it still shows up on page 1,2,3 etc
then i tried this and almost had it, but nothing shows
Code:
<?php if (is_home ('') and is_page ('')) : ?>
include this shit only on index page
<?php endif; ?>
|
Code:
<?php if ( (is_home())&&!(is_paged()) ){ ?>
<h1>this will only be on the index not pages</h1>
<?php } ?>