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

2019年12月12日15:22:28 发表评论 热度356 ℃

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

  1. function custom_excerpt_length( $length ) {  
  2. return 200;  
  3. }  
  4. add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );  

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

瓜皮猪

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: