查询的标签:


WordPress中修改默认摘要the_excerpt()的长度

标签: , , 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);
     ...

No Comments »