destoon做seo设置发现调用{分类名称},会自动带上三级所有的分类,对于有些优化不是很方便,修改一下只调用当前分类。 找到destoon根目录 include/seo.inc.php if($catid) { if($CAT['parentid']) { $seo_catname = ''; $tmp = strip_tags(cat_pos($CAT, 'DESTOON')); $tmp = explode('DESTOON', $tmp); $tmp = array_reverse($tmp); /* foreach($tmp as $k=>$v) { $seo_catname .= $v.$seo_delimiter; }*/ $seo_catname .= $tmp[0]; } else { //$seo_catname = $CAT['catname'].$seo_delimiter; $seo_catname = $CAT['catname']; } $seo_cattitle = $CAT['seo_title'] ? $CAT['seo_title'].$seo_delimiter : $seo_catname; $seo_catkeywords = $CAT['seo_keywords'] ? $CAT['seo_keywords'] : ''; $seo_catdescription = $CAT['seo_description'] ? $CAT['seo_description'] : ''; } 对应这修改一下,蓝色注释掉,红色新添加。 |