Posts showing […] in it

If you place the following in your functions.php it will remove it. Hope it helps!

add_filter( 'excerpt_more', 'my_remove_excerpt_more' );

function my_remove_excerpt_more() {
    return '';
}

tech