Make the “read more” link to the post
Place this in a theme’s functions.php to make the “read more” link to the post
function new_excerpt_more($more) {
global $post;
return '<a href="'. get_permalink($post->ID) . '">Read the Rest...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');




