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

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

1
2
3
4
function custom_excerpt_length( $length ) {  
    return 200;//截取200个字符
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

分享

文章导航