wordpress设置文章摘要

文章列表设置文章摘要

为文章列表设置文章摘要,限制显示字数,添加指向详情页链接

function new_excerpt_more($more) {
    global $post;
    return '...<a href="'.get_permalink($post->ID). '">阅读更多</a>';
}
add_filter("excerpt_more", "new_excerpt_more");
function new_excerpt_length($length) {
return 350;
}
add_filter("excerpt_length", "new_excerpt_length");