New Edit
I would like to show the_content BEFORE the more tag when the cookie is not set and the_content AFTER the more tag when the cookie is set.
I could not answer to my own question because my reputation is less than 10 so I will edit instead.
This is the final answer. This will show the_content before the more tag if the cookie is NOT set, and the_content AFTER the more tag once the cookie IS set. Very useful when creating Lead Gen landing pages or when you want to display some content before or after a certain action is taken.
Thanks.
<?php global $more;
while (have_posts()) : the_post();
if(isset($_COOKIE['CookieName'])) {
$more = 1;
the_content('',TRUE,''); }
else {
$more = 0;
the_content(); } ?>
if/thenconditional based on a cookie. I'd be happy to recant a close vote if the question were edited to make it WP-specific. – Chip Bennett Nov 11 '12 at 19:20