If you implement the hook_menu_links_discovered_alter() hook in Drupal 8.3 you have access to change the links with a code like this: /** * Implements hook_menu_links_discovered_alter(). */ function onlyone_menu_links_discovered_alter(&$ links) { $ links[‘node.add.article’] = t(‘New name’); } This code comes from the issue Improve the Add content page for the Allow a content type only onceRead more