theme_links($links, $delimiter = ' | ')
drupal/includes/theme.inc, line 453
Return a themed set of links.
$links An array of links to be themed.
$delimiter A string used to separate the links.
A string containing the themed links.
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
function theme_links($links, $delimiter = ' | ') {
return implode($delimiter, $links);
}