wordpress / wp / excerpt / continue reading
<?php the_excerpt(); ?>function new_excerpt_more($more) {
global $post;
return '... <br /><a class="button button-square uppercase sky bold read-more bg-white" href="'. get_permalink($post->ID) . '">Continue Reading <span data-icon="$"></span></a>';
}
add_filter('excerpt_more', 'new_excerpt_more');