如何將ECSHOP meta標籤中的版本號去掉,如:php
<meta name="Generator" content="ECSHOP v2.6.2"/> <meta name="Generator" content="ECSHOP v2.7.2"/>
在includes/cls_template.php,cls_template.php文件中找到以下代碼:post
/* 在頭部加入版本信息 */ $source = preg_replace('/<head>/i', "<head>\r\n<meta name=\"Generator\" content=\"" . APPNAME .' '. VERSION . "\" />",$source);
將它註釋,就能夠去掉。code