WordPress 在設定中可以設定顯示摘要的篇數,但沒有原生的設定可以設定列表文章摘要擷取字數,我們可透過 excerpt_length 這個 Hook 去修改需要顯示的字數。
可以參考下面這一段,將這段代碼加在主題的 functions.php 這個檔案最下方即可。
/**
* 自訂摘要擷取字數
* https://v123.tw
*/
function v123_custom_excerpt_length( $length ) {
return 100;
}
add_filter( 'excerpt_length', 'v123_custom_excerpt_length', 999 );
主題的 functions.php 這個檔案
請問上面的東西要在哪裡找到?
在這呢
{WordPress安裝目錄}/wp-content/themes/{主題目錄}/functions.php