Unable to override theme_more_link - Drupal 7
Description of Erratum
I followed the instructions provided in the book, but when I clear my cache nothing changes. I have attempted to code the code from another template and still have the same issue. I have attempted to Google a solution but I have as of yet to find a solution.
<?php
/**
* Overrides theme_more_link().
* - Changed the text from "More" to "Show me More"
* - Changed the class from "more-link" to "more"
*/
function dgd7_more_link($variables) {
return '<div class="more">' . l(t('Show me MORE!'), $variables['url'], array('attributes' => array('title' => $variables['title']))) . '</div>';
}