Plugin:Read More Right Here , How to change the name (more…) to Read More

Add this to your functions.php file:

function new_excerpt_more( $more ) {
        return 'Read More';
    }
    add_filter('excerpt_more', 'new_excerpt_more');