Created
May 30, 2012 17:00
-
-
Save timonweb/2837629 to your computer and use it in GitHub Desktop.
Override Read more link
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Override Read more link | |
| * @param unknown_type $vars | |
| */ | |
| function themename_preprocess_node(&$vars){ | |
| $vars['node']->links['node_read_more']['title'] = "read more"; | |
| $node = $vars['node']; | |
| # Following code is from theme.inc's template_preprocess_node() | |
| $vars['links'] = !empty($node->links) ? theme('links', $node->links, array('class' => 'links inline')) : ''; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment