By using this snippet you can replace the […] from your posts excerpts with a link to your post.
function your_custom_excerpt_more($more) { global $post; return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Continue reading</a>'; } add_filter('excerpt_more', 'your_custom_excerpt_more', 11);
INFO: This is a PHP snippet. If you don’t have a child theme or don’t know how to use one, we recommend that you use this plugin.