1 | //抜粋分が自動的に生成される場合に最後に付与される文字列を変更します。 |
2 | function cms_excerpt_more(){ |
3 | return '...' ; |
4 | } |
5 | add_filter( 'excerpt_more' , 'cms_excerpt_more' ); |
6 |
7 | //抜粋分が自動的に生成される場合にデフォルトの文字数を変更します。 |
8 | function cms_excerpt_length(){ |
9 | return 180; |
10 | } |
11 | add_filter( 'excerpt_mblength' , 'cms_excerpt_length' ); |
●上記の設定で
語尾を...