WordPress中修改默认摘要the_excerpt()的长度
2008年5月25日 20:52
标签: PHP, the excerpt, wordpress and 摘要字数
对于英文文章的WordPress
在wp-includes目录下找到formatting.php,里面有这样一个函数:
function wp_trim_excerpt($text) {
global $post;
if ( " == $text ) {
$text = get_the_content(");
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]>', $text);
$text = strip_tags($text);
...