opencart 后台导航菜单添加步骤

1,找到在cataloglanguageenglishcommonheader.php

// Text
$_['text_affiliate'] = 'Affiliates';
$_['text_attribute'] = 'Attributes';
$_['text_attribute_group'] = 'Attribute Groups';
$_['text_backup'] = 'Backup / Restore';
$_['text_banner'] = 'Banners';
$_['text_catalog'] = 'Catalog';
$_['text_category'] = 'Categories';

$_['text_wpcms'] = 'Wpcms';  //新添加的菜单名称

2,找到controllercommonheader.php

$this->data['text_catalog'] = $this->language->get('text_catalog');
$this->data['text_category'] = $this->language->get('text_category');
$this->data['text_wpcms'] = $this->language->get('text_wpcms'); //  在这个地方赋值之后会显示

$this->data['category'] = $this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL');
$this->data['wpcms'] = $this->url->link('catalog/wpcms', 'token=' . $this->session->data['token'], 'SSL');//这里修改实现href链接值得

3,把要添加的菜单写入模板文件view emplatecommonheader.tpl中即可

 <li><a href="<?php echo $wpcms; ?>"><?php echo $text_wpcms; ?></a></li>

 4,在菜单system-users-users group下面的Top Administrator选项下,注册一下新加菜单。

完成后示例如下图

原文地址:https://www.cnblogs.com/fslnet/p/4114451.html