WordPress內容preview長度

預設的長度太短, 增加預設的長度, 不知道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/

Comments

No comments yet. Why don’t you start the discussion?

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

*