I have tried to change the text in the 'Read more' link by putting:
function myzen_more_link($url, $title) {
watchdog("template.php","myzen_more_link");
return '<div class="more-link">' .
t('<a href="@link" title="@title">( more ... )</a>',
array('@link' => check_url($url),
'@title' => $title)) . '</div>';
}
In the template.php in my zen subtheme folder but it does not appear to work.
Almost all of the discussions I have seen about formatting the "more_link" concentrate on its placement. Can anyone tell me why this theme override does not take effect?
Thanks,
t(). In your case, the<a>tag is at the beginning of the string, and it doesn't contain anything that needs to be translated. – kiamlaluno♦ Mar 31 '11 at 0:29