我玩得很开心!我试图强制此页面仅显示有限的单词,无论它们是否插入readmore标记。
我本来打算使用\\u摘录,但它没有在摘录的末尾添加readmore链接。
我让我的索引页使用以下代码来拉我的博客卷:
<div class="entry-content">
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
__( \'more %s <span class="meta-nav">...</span>\', \'gateway\' ),
the_title( \'<span class="screen-reader-text">"\', \'"</span>\', false )
) );
?>
</div>
在我的阅读设置中,我将feed中的每篇文章的“show”设置为“summary”。
因此,我想我的问题是:是否有一种方法可以限制\\u内容(),或者在\\u摘录()中添加更多阅读内容?