2010-05-04 79 views
1

我怎麼可以從以下線路地帶H1標籤,其內容

strip_tags(substr($article->content(),0,255) 

從這個完整的代碼刪除

<h1>and its contents</h1> 

<?php $last_articles = $this->children(array('limit'=>5, 'order'=>'page.created_on DESC')); ?> 
<?php foreach ($last_articles as $article): ?> 
<div class="entry"> 
    <h3><?php echo $article->link($article->title); ?></h3> 
    <?php echo strip_tags(substr($article->content(),0,255).'...', '<p><a>'); ?> 
</div> 
<?php endforeach; ?> 

回答