Not working neither
add_filter( 'fpw_excerpt', 'fpw_link_the_excerpt' );
function fpw_link_the_excerpt( $excerpt) {
$new_excerpt = '<a href="' . get_the_permalink() . '">';
$new_excerpt .= $excerpt;
$new_excerpt .= '</a>';
return $excerpt;
}
It’s in the function.php of my theme, right ?