Like the topic title described, I have <!--more--> tag on all my posts and the index always performs the_content() job nicely.
However, with webslice, I can't get the_content() to post until the <!--more--> tag. In the webslice the_content() ignores the more tag and displays the whole article.
Any idea how?
This is my webslice code ..
<div class="entry" style="text-align: justify; padding:0px; margin:0px;">
<?php the_content('<br />Continue Reading » ' . get_the_title('', '', false) );?>
<div style="text-align: center">Categorized in <?php the_category(', ') ?> • <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>
</div>
</div>