自定义摘录长度

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.  

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

PHP 自定义wordpress摘录长度

自定义摘录长度

自定义wordpress摘录长度

php wordpress自定义中的多个摘录长度

在WordPress中显示具有自定义摘录长度和自定义阅读更多文本的文章

[moka同学笔记]Yii2 自定义class自定义全局函数(摘录)