Hi Everyone
I have managed to change the excerpt text on the posts but seems to work on some posts excepts and not all of them.
Today i discovered that on the archives page i still get (more..) even thought i changed the text to full story.
I added the code below to my functions.php
// chaning the .... to full story as per google
function excerpt_ellipsis($text) {
return str_replace('[...]','<a href="'. get_permalink() . '">Full Story</a>', $text);
}
add_filter('the_excerpt', 'excerpt_ellipsis');
Can someone help PLEASE. Is there a way of hacking this?