Web筋トレも使っているサーバー!ロリポップを使ってみない?

WordPress のthe_excerpt() 抜粋で[…]のデザイン変更

Sponser Link

function.phpに記述

function new_excerpt_more($more) {
return 'ここに変更したいもの';
}
add_filter('excerpt_more', 'new_excerpt_more');

例えば…

function new_excerpt_more($more) {
return '...';
}
add_filter('excerpt_more', 'new_excerpt_more');
function new_excerpt_more($more) {
global $post;
return '……(<a href="' . get_permalink() . '">' . __('続きを読む') . '</a>)';
}
add_filter('excerpt_more', 'new_excerpt_more');
Sponser Link

コメントを残す

メールアドレスが公開されることはありません。