Show menu in page
Key words and phrases:
display drupal menu within node
print part of menu tree within content
menu view inside
Description & Info:
Set the input format for your node body or other textarea to PHP code, figure out what the menu ID of the menu item you care about as described by Nick Lewis (from whom all of this is stolen), and then stick this in your content:
<?php
$html = theme_menu_tree(42);
print $html;
?>It could also go in a theme or somewhere else silly.
Post new comment
