Drupal 7 - Print only 1 link from a menu. 'menu-donate' is the drupal name of the menu.
<?php
$menu_depth = 1;
$menu_tree = menu_tree_output(menu_tree_all_data('menu-donate', null, $menu_depth));
print drupal_render($menu_tree);
?>