I found this part of code in functions.php
function serene_excerpt_more( $more ) {
return sprintf( '...<a class="read-more" href="%s">%s</a>',
get_permalink( get_the_ID() ),
esc_html__( 'Read more', 'Serene' )
);
}
add_filter( 'excerpt_more', 'serene_excerpt_more' );
Any help?