Modify the default excerpt by replacing the “Read More” text with a custom ellipsis using the excerpt_more filter.
function qrs_excerpt_more($more) {
global $post;
remove_filter('excerpt_more', 'qrs_excerpt_more');
return '...';
}
add_filter('excerpt_more','qrs_excerpt_more',11);