Ivovic,
Can you explain how you are doing this. I am trying to make a custom 2 column template page that will break a page up using the <!–more–> tag. Something like this…
<div style="width:300px;float:left;">
<?php the_content("",false); ?>
</div>
<div style="width:300px;float:left;">
<?php the_content("",true);?>
</div>
The problem of course is that the first column has the whole post in it. The second column shows everything after the <!–more–> tag, which is what I want.
Anyone know a good way to do this? (ie pull everything before the <!–more–> even on a page)
Thanks