Hi
Is there a way to use if is_home or is_front_page to only return positive on the first page of results?
I've got posts per page set to 5, but when I hit the "previous posts" link to go to the next page of results the is_home or is_frontpage is still giving me a positive result (showing the word "test").
My code is:
<?php if (is_home() ) { echo '<a>test</a>' ;} else { echo '<a href="[blog url]">home <span class="greydot">•</span></a>' ;} ?>
or
<?php if (is_front_page() ) { echo '<a>test</a>' ;} else { echo '<a href="[blog url]">home <span class="greydot">•</span></a>' ;} ?>
thanks,
mattg.