在wp-includes目录下找到formatting.php,里面有这样一个函数:

function wp_trim_excerpt($text = ”) {
$raw_excerpt = $text;
if ( ” == $text ) {
$text = get_the_content(”);

$text = strip_shortcodes( $text );

$text = apply_filters(‘the_content’, $text);
$text = str_replace(‘]]>’, ‘]]>’, $text);
$excerpt_length = apply_filters(‘excerpt_length’, 55);
$excerpt_more = apply_filters(‘excerpt_more’, ‘ ‘ . ‘[…]’);
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
}
return apply_filters(‘wp_trim_excerpt’, $text, $raw_excerpt);
}

将55改为你需要截取的字数。

对于中文文章的WordPress

在主题 functions.php 文件加入

function custom_excerpt_length( $length ) {
    return 20;
}
add_filter( 'excerpt_length''custom_excerpt_length', 999 );


20为字数。输出为无HTML格式文字。

函数对数字、英文的识别说明

1个数字为一个字符,一个英文字母为一个字符,一个中文字为一个字符。另现支持各种混搭风格~

参考文献:
http://codex.wordpress.org/Template_Tags/the_excerpt

发表评论

您的电子邮箱地址不会被公开。