以下をfunctions.phpに記述。
// 続きを読む function my_excerpt_more($post) { return '<a href="'. get_permalink($post->ID) . '" class="more_link">' . '≫ 続きを読む' . '</a>'; } add_filter('excerpt_more', 'my_excerpt_more'); // 続きを読むの文字数 function new_excerpt_length($length) { return 134; } add_filter( 'excerpt_length', 'new_excerpt_length');
archive.phpに以下記述。
<?php the_excerpt(); ?>
【参考URL】