Read more at the end of the_excerpt in Wordpress
<?php
//Read more at the end of the_excerpt
function new_excerpt_more($more) {
global $post;
return '... <a class="more-link" href="'. get_permalink($post->ID) . '">Далее...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
?>