サーチ…


抜粋の長さを50語に制限する

functions.phpに次のコードを記述します

function themify_custom_excerpt_length( $length ) {
   return 50;
}
add_filter( 'excerpt_length', 'themify_custom_excerpt_length', 999 );

優先度として999を使用して、デフォルトのWordPressフィルタの後で関数が実行されるようにします。それ以外の場合は、ここで設定されている値を上書きします。

抜粋の最後にRead Moreリンクを追加する

これを行うには、 functions.phpに次のコードを記述します

function custom_excerpt_more($more) {
   return '<a href="'. get_permalink($post->ID) . '">Read More</a>';
}
add_filter('excerpt_more', 'custom_excerpt_more');

結果は次のようになります。

swiftsrbija.rsの実例

抜粋の最後にいくつかの点を追加する

私たちのfunctions.php

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

私たちはこれを得るべきです:

swiftsrbija.rsのウェブサイトからの実例



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow