WordPress限制摘录长度字符不起作用

时间:2017-01-30 09:28:36

标签: wordpress

我不明白为什么我的代码在我的WordPress中不起作用。 对于限制摘录长度字符,我在我的文件functions.php中添加它:

<div class="article-ex">
    <?php the_excerpt(); ?>
</div>

,这在home.php

EmailEnumOps

此代码返回所有提取而不是20个字符

TY做了很多帮助。 文森特

1 个答案:

答案 0 :(得分:0)

您也可以通过php字符串函数来完成...

$string = get_the_content();
$newString = substr($string, 0, 20);
echo $newString;
相关问题