[済]excerpt_more

    category >
  1. WORDPRESS
  2. >
  3. tips

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 >