php 改变摘录长度

Posted

tags:

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

/**
 * Filter the except length to 20 words.
 *
 * @param int $length Excerpt length.
 *
 * @return int (Maybe) modified excerpt length.
 */
function custom_excerpt_length( $length ) {
	return 20;
}

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

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

php 摘录限制长度和更多wordpress

php 更改摘录长度

php 修改帖子摘录的长度

php 摘录长度

php 摘录后长度

php 自定义摘录长度