| Versions | |
|---|---|
| 4.7 – 6 | theme_submenu($links) |
Return a themed submenu, typically displayed under the tabs.
$links An array of links.
includes/
<?php
function theme_submenu($links) {
return '<div class="submenu">' . implode(' | ', $links) . '</div>';
}
?>