What I need to do is bring data from a field in a "parent" node to a "child" node. Something like the following:
$myactive_trail = menu_get_active_trail();
$parent = $myactive_trail['2']['link_path'];
print $parent->field_video['0']['filepath'];
I know that there is not such thing as a parent not hence me trying to use menu_get_active_trail()
. I can print the $parent
link_path
, but don't know how to call up a field from the parent node.