原本wordpress裡面預設長度為55 (By default, excerpt length is set to 55 words. )
修改的方式, 其實很容易
去找出theme裡面的functions.php檔案
在最底下新增此段程式碼: (以改長度為80為例)
1 2 3 4 |
function custom_excerpt_length( $length ) { return 80; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); |