Nothing displaying for Drupal main menu
- by jonathandey
I'm trying to output the main_menu in to a custom theme on the page.tpl.php template however nothing is displaying when I add <?php print theme("links", $main_menu) ?>
However when I do a var_dump on the $main_menu I get
array(2) { ["menu-218"]=> array(2) { ["href"]=> string(7) "" ["title"]=> string(4) "Home" } ["menu-335"]=> array(2) { ["href"]=> string(6) "node/1" ["title"]=> string(4) "Home" } }
What might I be doing wrong? I'm new to Drupal so be kind please :D