自定义摘录长度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义摘录长度相关的知识,希望对你有一定的参考价值。

  1. // Custom excerpt length
  2. function custom_excerpt_length( $length ) {
  3. return 50;
  4. }
  5. add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
  6.  

以上是关于自定义摘录长度的主要内容,如果未能解决你的问题,请参考以下文章