ホーム >  編集カテゴリー一覧 > 

記事抜粋の調整

2015年8月30日 / 編集カテゴリー一覧, PHP, functions.php

記事抜粋を表示するthe_excerptの使い方とカスタマイズのまとめ
http://pressstocker.com/the-excerpt/

うむ~こちらの方がよろしいようで→http://www.webworkersclip.com/2672/

文字数の指定

function new_excerpt_mblength($length) {
return 100;
}
add_filter(‘excerpt_mblength’, ‘new_excerpt_mblength’);

文言の変更→ ’ ’=空にすると無表示

function new_excerpt_more($more) {
return ‘…続く’;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);

 

たとえば「続きを読む」にページへのリンクをつける芳しくない?あ!そうなのね

function new_excerpt_more($post) {
return ‘<a href=”‘. get_permalink($post->ID) . ‘”>’ . ‘…続きを読む’ . ‘</a>’;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);

参考

function new_excerpt_more($more) {
return ‘ …<a class=”more” href=”‘. get_permalink() . ‘”>続きを読む</a>’;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);

 

例えば30文字で表示させたい場所(カテゴリー)では以下のように記述・・・これは追々

<?php echo mb_substr(get_the_excerpt(), 0, 30); ?>