Sorry, didn't see it yesterday. Anyway, the idea behind conditionals is that under certain condition you need to do something different. In your case, when they get to page 4. So, you need to have both required actions: the one you want to regularly perform and the conditional one. In your case, it would be something like this:
Code:
<?php wp_reset_query();
if (is_page('4') )
{
echo '<a href="YOUR_JOIN_PAGE">Next Page </a>';
} else {
echo 'YOUR_REGULAR_CODE';
};
}
?>
__________________
This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth
|