テーマ内のfunctions.phpスクリプトに次のコードを追加しました。
function custom_excerpt_length( $length ) {
return 15;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
function new_excerpt_more( $more ) {
return '...';
}
add_filter('excerpt_more', 'new_excerpt_more');
このページで提案されているように:http://codex.wordpress.org/Template_Tags/the_excerpt
ただし、抜粋の長さはデフォルトの55ワードのままであり、最後の文字列はまだ。ではありませ[...]
ん...
。
Wordpressのバージョンは3.4.1です
抜粋を表示するために使用しているコードは次のとおりです。
the_excerpt();
私のfunctions.phpへの追加が機能するようにそれを修正する方法について誰かが何かアイデアを持っていますか?