Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Update…

    It is possible to force a pages with a single post to support a <!–more–> tag…

    <?php global $more; $more = false; ?>
    <?php the_content('Continue Reading'); ?>
    <?php $more = true; ?>

    see Here

    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

Viewing 2 replies - 1 through 2 (of 2 total)