Add this Code in functions.php File for remove the […] from the_excerpt() WordPress:
1 2 3 4 5 6 7 |
/** * Remove the [...] from the_excerpt */ function remove_suffix_dots( $more ) { return ''; } add_filter('excerpt_more', 'remove_suffix_dots'); |