中的字符数进行限制

时间:2015-07-17 作者:Ray Williams

我试图在我的主页上发布一个新闻博客部分,但我想将文本限制为100个字符。我在中使用此代码functions.php 文件,但它不工作。

我想限制我博客文章中的字符数量。我在中使用此代码functions.php 但它列出了大量文本:

function new_excerpt_more( $more ) {
    return \' <a href="\'. get_permalink( get_the_ID() ) . \'">\'
           . __(\'Read More\', \'your-text-domain\') . \'</a>\';
}
add_filter( \'excerpt_more\', \'new_excerpt_more\' );
任何帮助都将不胜感激。

1 个回复
SO网友:terminator

默认情况下,摘录的字符长度为55。只需使用此代码即可。有关更多详细信息,请参阅法典

function new_excerpt_more( $length ) {
    return 100;
}
add_filter( \'excerpt_length\', \'new_excerpt_more\', 999 );

结束