get_the_excerpt() inside WP_Query – link URL Incorrect

you can remove read more link by adding this filter to functions.php then add permalink to your loop

function new_excerpt_more($more) {
   global $post;
return '..';   }add_filter('excerpt_more', 'new_excerpt_more');

error code: 523