A poc a poc aniré recopilant els principals hacks per desenvolupament d'un nou theme a les versions 6.x
<?php if (is_array($primary_links)) : ?>
<ul id="ulmenu">
<?php foreach ($primary_links as $link): ?>
<li class="limenu"><?php
$href = $link['href'] == "<front>" ? base_path() : base_path() . drupal_get_path_alias($link['href']);
print "<a href='" . $href . "'>" . $link['title'] . "</a>";
?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
Envia un nou comentari