我试图在我的主页上发布一个新闻博客部分,但我想将文本限制为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\' );
任何帮助都将不胜感激。