This is how you can load menu items children. Also the example / snippet is about how you can get the first child, but the menu has to be in a single language tough. It takes access and being hidden in consideration.
Source code viewer
$mlid = 80085; $result = db_query('SELECT mlid, link_path FROM {menu_links} WHERE plid = :plid ORDER BY weight, link_title', array(':plid' => $mlid)); $href = FALSE; foreach ($result as $m) { $child = menu_link_load($m->mlid); $href = $m->link_path; break; } } if ($href) { dpm($href); }Programming Language: PHP