木+木+木=森

できるだけ言葉にする

抜粋の…を変える

抜粋の…を変えたい

続きを読むのボタンを追加したい

 

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

 

↑を参考にボタンに変更

<?php
function new_excerpt_more($more){
  global $post;
  return '...<div class="circle_button"><a href="'. get_permalink($post->ID) . '">続きを読む</a></div>';
}
add_filter('excerpt_more','new_excerpt_more',9999);
?>

 

【参考】抜粋の[…]や「続きを読む」をfunctions.phpで変更する方法【WordPress】|WEB TIPS~ホームページ制作の覚え書き