hi there, since the last WP and themeco update something has changed in my blogpage overview.
last year i added this* somewhere, and that did the trick, but that field has now dissapeared. how do i get it back?
here you can see what i mean:
the latest post shows the way it was a year ago. the previous post from before the update is still oke.
thank you
// Adding Excerpt to Posts
function excerpt_read_more_link($output) {
global $post;
return $output . ’ Read More’;
}
add_filter(‘the_excerpt’, ‘excerpt_read_more_link’);