Drupal8

How to delete Drupal menu item programmatically

How-to-Delete-Drupal-Menu

Sometimes we need to delete the menu item programmatically, so the below code snippet will help you to delete any menu item programmatically. You need to pass the menu id to the entityTypeManager service and you need to call the delete method. $menu_link = \Drupal::entityTypeManager()->getStorage(‘menu_link_content’)->load(3); // Pass Menu Id $menu_link->delete();  

How to install Drupal CMS?

Drupal Content Management System is a very powerful tool to manage the data like content, audio, video, documents on our website. If the site has more complexity in terms of content manageable people will prefer CMS like Drupal, WordPress, Joomla tools. Prerequisites Here you can see the steps to install the Drupal site on your machine. Installing …

How to install Drupal CMS? Read More »