阅读更多不再显示

时间:2010-09-28 13:26:19

标签: php wordpress

升级WordPress后,TinyMCE摘录停止工作,并且thehypebr.com/index.php中的摘录代码也停止了。我不确定为什么在每个摘录后都没有显示Read More。

        <div class="custom_excerpt"><?php the_excerpt('Read more &raquo;'); ?></div><div class="separator">&nbsp;</div>

1 个答案:

答案 0 :(得分:1)

the_excerpt()不接受任何参数。只有the_content()才会使用该参数。如果你想使用摘录,你将不得不以另一种方式添加阅读更多链接。

修改

要在摘录后添加永久链接,您可以这样做:

the_excerpt();
echo '<p><a href="' . get_permalink() . '">Read More...</a></p>';