I have some pong pages and don't want me users to have to go to the top of the page every time to get to the menu.

Is there a way to have an additional menu at the bottom of every page as well as the regular menu?

Many thanks!

Comments

mfer’s picture

In your page.tpl.php file just add another print $primary_links to display your primary links a second time.

If you want to theme them differently try something like:

<div id="bottom-primary-links">
<?php print $primary_links ?>
</div>

--
Matt
www.mattfarina.com
www.innovatingtomorrow.net
www.geeksandgod.com
www.superaveragepodcast.com

webdev2’s picture

mfer - you rock - thanks!!

AdrianB’s picture

What if it's not the primary links, but some other Drupal menu?

senortim’s picture

This didn't work for me in Drupal 6.19 with the Zen theme. Instead, I had to use the following:
print theme('links', $primary_links);