升级WordPress后,TinyMCE摘录停止工作,并且thehypebr.com/index.php中的摘录代码也停止了。我不确定为什么在每个摘录后都没有显示Read More。
<div class="custom_excerpt"><?php the_excerpt('Read more »'); ?></div><div class="separator"> </div>
答案 0 :(得分:1)
the_excerpt()
不接受任何参数。只有the_content()
才会使用该参数。如果你想使用摘录,你将不得不以另一种方式添加阅读更多链接。
要在摘录后添加永久链接,您可以这样做:
the_excerpt();
echo '<p><a href="' . get_permalink() . '">Read More...</a></p>';