以下代碼(來源)寫入functions.php,即可首頁全文輸出改摘要輸出,摘要字數需要在formatting.php中修改(參考1,2)。
/**
* Display the content in short words
*/
function dm_strimwidth($str ,$start , $width ,$trimmarker ){
$output = preg_replace('/^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$start.'}((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$width.'}).*/s','\1',$str);
return $output.$trimmarker;
}
/*控制摘要字數*/
function new_excerpt_length($length) {
return 150;
}
function new_excerpt_more($more) {
global $post;
return '<a href="'. get_permalink($post->ID) . '">......閱讀更多</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
然而在原生主題twenty fifteen中未能生效,該主題需要通過其他方式實現。