I am trying to take out the feature post on the next and previous pages: i.e.
http://localhost/wordpress/?paged=2
so i plug in this code:
<?php if(is_home()){include('feature-postTEST.php');} ?>
but it still remains
can anyone help?
I am trying to take out the feature post on the next and previous pages: i.e.
http://localhost/wordpress/?paged=2
so i plug in this code:
<?php if(is_home()){include('feature-postTEST.php');} ?>
but it still remains
can anyone help?
I am trying to get the same effect as: http://wp-premiums.com/
where when you click on the next pages at the bottom - the feature image disappears.
Give this a try:
if(is_home() && !get_query_var('paged')) {include('feature-postTEST.php');}
That worked!!!
CAN I CALL YOU MASTER YOSHI?
THANKS AGAIN.
This topic has been closed to new replies.