Modify the Read More text when using the the_excerpt()
// Replaces the excerpt "[...]" text with a link
function excerpt_more_link($more) {
global $post;
return '…<div><a class="button" href="'. get_permalink($post->ID) . '">Read More</a></div>';
}
add_filter('excerpt_more', 'excerpt_more_link');