如何删除Dzania Lite主题中的摘录

时间:2013-05-14 作者:Thejdeep

我在我的网站上使用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 &rarr;\', \'dzonia\'); ?></a>

<div class="tags">

<?php the_tags(\'Post Tagged with \', \', \', \'\'); ?>

</div>

</div>

2 个回复
最合适的回答,由SO网友:Burgon 整理而成

您只需更换此行:

<?php the_excerpt(); ?>
使用此行:

<?php the_content(); ?>
这应该插入你的帖子内容,而不是摘录。

SO网友:fuxia

如果只需要一个“阅读更多”链接,请替换<?php the_excerpt(); ?> 使用:

<a href="<?php the_permalink() ?>">Read more</a>
这将创建与图像相同的链接,只包含文本。

结束