本文实例讲述了去掉destoon资讯内容页keywords关键字自带的文章标题的方法,具体实现方法如下:
在\module\article目录下的article.class.php文件中的大约158行找到:
1
|
$keyword = $item [ 'title' ]. ',' .( $item [ 'tag' ] ? str_replace ( ' ' , ',' , trim( $item [ 'tag' ])). ',' : '' ). strip_tags (cat_pos(get_cat( $item [ 'catid' ]), ',' )); |
改为:
1
|
$keyword = str_replace ( ' ' , ',' , trim( $item [ 'tag' ])); |
即可。
希望本文所述方法对大家destoon开发有所帮助。