How to hide Edit | View tabs?

后端 未结 11 1003
轮回少年
轮回少年 2021-02-01 04:43

Can I hide the

Edit | View

tabs on top of each node ?

I\'ve searched for this option in theme settings (both global and sta

11条回答
  •  太阳男子
    2021-02-01 05:17

    On the module side, you could do something that decouples the Edit's menu entry from the local tasks for the node:

    function custom_menu_alter(&$items) {
      $items['node/%node/edit']['type'] = MENU_CALLBACK;
    }
    

    The edit path is still there, but now it is not associated with the View tab. This includes the edit page itself--no View tab there.

提交回复
热议问题