I put it after the last function, just like I posted here..
function excerpt_read_more_link($output) {
global $post;
return $output . ‘ID) . ‘”> Read More…‘;
}
add_filter(‘the_excerpt’, ‘excerpt_read_more_link’);
Did you try it like these?
I’m so sorry, I didn’t see your questions earlier..
This is how I solved it:
I added the following in my functions.php:
function excerpt_read_more_link($output) {
global $post;
return $output . ‘ID) . ‘”> Read More…‘;
}
add_filter(‘the_excerpt’, ‘excerpt_read_more_link’);
Don’t know why but it didn’t work the first time I tried it… Hope it works with you 😉