the_excerptの[…]や文字数を変える

the_excerptの[…]がいらない場合や表示する文字数を変える。

≫新しい記事がありますhttps://webpaprika.com/318.html

function.php

■文字数

function new_excerpt_length($length) {
    return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');

■[…] 2.9以上

function new_excerpt_more($more) {
    return '[.....]';
}
add_filter('excerpt_more', 'new_excerpt_more');

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)