[済]excerpt_more
2019/11/26 (2019/11/27 update)
抜粋表示ではみ出した文字を変更
default は […] となっている
参考: WORDPRESS CodeX
version 2.9以降
function new_excerpt_more($more) {
return '[.....]';
}
add_filter('excerpt_more', 'new_excerpt_more');
抜粋表示ではみ出した文字を変更
default は […] となっている
参考: WORDPRESS CodeX
version 2.9以降
function new_excerpt_more($more) {
return '[.....]';
}
add_filter('excerpt_more', 'new_excerpt_more');
tag > #wordpress(11)
