Skip to content

Instantly share code, notes, and snippets.

@johnny5th
Created April 23, 2012 20:05
Show Gist options
  • Save johnny5th/2473461 to your computer and use it in GitHub Desktop.
Save johnny5th/2473461 to your computer and use it in GitHub Desktop.
Drupal Anchor Links
<nav>
<ul>
<?php foreach ($items as $delta => $item): ?>
<li><?php print render($item); ?></li>
<?php endforeach; ?>
</ul>
</nav>
<?
function TEMPLATE_preprocess_node(&$vars, $hook){
for($i = 0; $i < sizeof($vars['content']['field_shortcuts']['#items']); $i++){
if($vars['content']['field_shortcuts']['#items'][$i]['url'] == ""){
$urldata = explode('#', $vars['content']['field_shortcuts']['#items'][$i]['display_url']);
if(isset($urldata[1])){
$vars['content']['field_shortcuts'][$i]['#markup'] = '<a href="#' . $urldata[1] . '">' . $vars['content']['field_shortcuts'][$i]['#markup'] . '</a>';
}
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment