It's annoying that the output of $links from a content node includes both "read more" and "comments" in the same list. Does anybody have a solution to this? There actually is a module that will pull out the "read more" -- 'ed_readmore' module, but I've read some comments of problems with the module. It also seems like overkill to run a module for a simple task.
Yeah, basically you'll have to use hook_link_alter to remove the portion you want elsewhere, then manually provide that link where you want. Not ideal, but at least these hooks exist to allow you to do it :)
It's annoying that the output of $links from a content node includes both "read more" and "comments" in the same list. Does anybody have a solution to this? There actually is a module that will pull out the "read more" -- 'ed_readmore' module, but I've read some comments of problems with the module. It also seems like overkill to run a module for a simple task.