預設的長度太短, 增加預設的長度, 不知道theme update後會不會保留設定
外觀 -> 佈景主題檔案編輯器 -> 佈景主題檔案 -> functions.php
/* wordpress-excerpt-length */
function my_excerpt_length($length){
return 150;
}
add_filter('excerpt_length', 'my_excerpt_length',15);
function post_excerpt_more( $more ) {
return '...';
}
add_filter( 'excerpt_more', 'post_excerpt_more', 15 );
Reference
https://prstudio.idv.tw/wordpress-excerpt-length/