Now I could be mistaken but I believe I have done this before, I just can not remember how I did it.
I was able to hide all the content on a page that was ABOVE the <!-- more --> Tag and only display the content below it.
Now I know this will display all the content above the more tag but not the content below it.
<?php global $more; $more = 0; the_content("Add a Comment"); ?>
Is there a way to display ONLY the content BELOW the more tag?
Thanks in advance! <3
have you studied:
http://codex.wordpress.org/Customizing_the_Read_More
To remove the teaser:
Change the_content(); in your index.php to (i.e., the second parameter controls this):
the_content('',true,''); [edited]
(in the codex, it says FALSE instead of true, but this seems to be wrong, looking into the docu of 'the_content()' http://codex.wordpress.org/Template_Tags/the_content)
i tried
the_content('',true,'');
in page.php and it only shows the part after the 'more tag' - no teaser.
Aha! No I did not come across this in the codex, I only found the_content part.
Thanks a bunch! =)