//抜粋の省略記号変更
function my_excerpt_more($more) {
return '...';
}
add_filter('excerpt_more', 'my_excerpt_more');
//抜粋の文字数変更
function my_excerpt_length($length) {
return 42;
}
add_filter('excerpt_length', 'my_excerpt_length', 999 );
WordPressに関するメモ書き
//抜粋の省略記号変更
function my_excerpt_more($more) {
return '...';
}
add_filter('excerpt_more', 'my_excerpt_more');
//抜粋の文字数変更
function my_excerpt_length($length) {
return 42;
}
add_filter('excerpt_length', 'my_excerpt_length', 999 );