Hello,
I added the following to my functions.php file to add ‘Read more’ after post excerpts:
// Changing excerpt more
function new_excerpt_more($more) {
global $post;
return '… <a href="'. get_permalink($post->ID) . '">' . 'Read More »' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
But am having 2 issues. First it only displays on one post on a page that lists 5… as you can see in the image attached its on one and not the other. And the other issue is that it displays weird question marks next to it, which you can also see in the image.
Do i have the code wrong?
TIA!
Rena
