我在我的网站上使用Dzonia Lite主题。我的首页显示了所有最新的帖子。我在每篇文章的末尾都会得到一段摘录。
有谁能建议我如何删除这篇文章末尾的摘录吗。
下面是我在模板文件中的代码
<div class="post_content">
<?php if ((function_exists(\'has_post_thumbnail\')) && (has_post_thumbnail())) { ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail(\'post_thumbnail\', array(\'class\' => \'postimg\')); ?>
</a>
<?php } else {
?>
<a href="<?php the_permalink() ?>"><?php echo inkthemes_main_image(); ?></a>
<?php
}
?>
<?php the_excerpt(); ?>
<div class="clear"></div>
<?php wp_link_pages(array(\'before\' => \'<div class="page-link"><span>\' . \'Pages:\' . \'</span>\', \'after\' => \'</div>\')); ?>
<?php edit_post_link(\'Edit\', \'\', \'\'); ?>
</div>
<a href="<?php the_permalink() ?>" class="continue"><?php _e(\'Continue reading →\', \'dzonia\'); ?></a>
<div class="tags">
<?php the_tags(\'Post Tagged with \', \', \', \'\'); ?>
</div>
</div>