本文實(shí)例講述了去掉destoon資訊內(nèi)容頁(yè)keywords關(guān)鍵字自帶的文章標(biāo)題的方法,具體實(shí)現(xiàn)方法如下:
在\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' ])); |
即可。
希望本文所述方法對(duì)大家destoon開發(fā)有所幫助。