WordPress 抜粋表示関数 the_excerpt() をカスタマイズ

アーカイブページや新着記事一覧などで本文の抜粋を表示する the_excerpt() をカスタマイズする方法

抜粋の文字数を変更する

/**
 * 抜粋の文字数を変更する
 */
function ag_change_excerpt_length( $length ) {
  return 48; 
}
add_filter( 'excerpt_length', 'ag_change_excerpt_length', 999 );

省略表示の […] を変更する

/**
 * 省略表示の […] を変更する
 */
function ag_change_excerpt_more( $more ) {
  return '...';
}
add_filter( 'excerpt_more', 'ag_change_excerpt_more' );

コメント

タイトルとURLをコピーしました