正务库

wordpress文章摘要限制the_excerpt()字符数(文字数量)

时间:2年前   游览量:366    标签: nbsp    办法    摘要    截取    39   

其实限制摘要有很多办法,下面先给出一个全局的办法,设置后只要在希望显示摘要的地方添加the_excerpt()即可。
将一下代码放置在主题的functions.php文件内?>前方

  1. function custom_excerpt_length( $length ) {  

  2. return 200;  

  3. }  

  4. add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );  

以上办法是截取到200个字符