How to hide Edit | View tabs?

后端 未结 11 994
轮回少年
轮回少年 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:31

    I use the following in template.php by theme (which is perhaps a little hacky, I feel I should be considering unsetting $tabs instead):

    function THEME_NAME_menu_local_tasks() {
      return '';
    }
    

    Or you could ommit:

    if ($tabs) echo $tabs;
    

    from your page.tpl.php...

提交回复
热议问题