the_excerpt()をカスタマイズする

<?php
//抜粋の文末記号を変更
function custom_excerpt_more($more){
    return ' …';
}
add_filter('excerpt_more', 'custom_excerpt_more');

//抜粋の文字数を変更
function custom_excerpt_mblength($length){
    return 180;
}
add_filter('excerpt_mblength', 'custom_excerpt_mblength');