如何将缺少的阅读更多 link 添加到 drupal 7 预告片

How to add missing read-more link to drupal 7 teaser

大约一年前自定义 drupal 7 主题时,我删除了在预告片末尾显示阅读更多 link 的代码。

我现在需要重新添加此代码以显示阅读更多内容 link,但我完全忘记了将此代码放在哪里。

有什么帮助吗?

谢谢

在您的模板中查找后缀为 *-teaser.tpl.php 的文件,并在适当的位置添加 this example or another example of marinellie theme

    <span class="teaser-readmore"><?php print l(t('read more'), 'node/' . $nid, array('attributes' => array('class' => t('node-readmore-link')))); ?></span>

另一个 解决方案是寻找它是如何实现你的主题的(寻找 *--teaser.tpl.php 和 copy/paste read_more节)