I recently posted a question over at Drupal Answers - Stack Overflow which I thought might be better addressed here.
I am simply trying to change the "more-link" on a node display. My understanding was that that could be done by
adding an implementation of theme_more_link to template.php. However, that doesn't appear to work. I then noticed the
HOOK_theme implementation with its comment: // @TODO: Needs detailed comments. Patches welcome!
I tried adding a line:
$hooks['more_link'] = array( 'arguments' => array('url' => NULL, 'title' => NULL) );
to this hook. But that also failed. I then had a look at the value of $hooks returned by zen_theme() and it was a null array.
Is zen_theme() used by the zen theme and if so why are no hooks defined?
If anyone has the time, an explanation of how to do this would be helpful.
Thanks,
Note: the latest version of my code is at: http://pastebin.com/K2HztnFQ