將摘錄長度限制為 50 個字

將以下程式碼放在 functions.php 中

function themify_custom_excerpt_length( $length ) {
   return 50;
}
add_filter( 'excerpt_length', 'themify_custom_excerpt_length', 999 );

使用 999 作為優先順序,以確保該函式在預設的 WordPress 過濾器之後執行,否則它將覆蓋此處設定的內容。