Add "…" to the_excerpt in a child theme
-
Hello,
I would like to add “…” to the end of excerpts, it seems pretty simple. I saw this :
function new_excerpt_more( $excerpt ) { return str_replace( '[...]', '...', $excerpt ); } add_filter( 'wp_trim_excerpt', 'new_excerpt_more' );
But it doesn’t work for me, maybe it’s because I have a parent theme and I’m missing something…
Could you help to find where I have to check and what can I try to fix it ?
Thank you
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Add "…" to the_excerpt in a child theme’ is closed to new replies.