修改步驟如下:
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的石峰網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
1、首先大家先找到TitleSEO插件的所在目錄,z-blog的所在根目錄下---plugin目錄下--TitleSEO文件包,在這個文件包里有兩個文件,分別是include.asp 和plugin.xml 。include.asp是該插件的主程序,plugin.xml文件為插件信息。
2、打開include.asp這個文件,找到下面這段代碼
Function TitleSEO_Catalog(ByRef Ftemplate)
If IsEmpty(Ftemplate) Then Exit Function
If Request.QueryString("cate") "" Or _
Request.QueryString("auth") "" Or _
Request.QueryString("date") "" Or _
Request.QueryString("tags") "" Then
Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"#BlogTitle# #ZC_MSG044# #ZC_BLOG_TITLE#")
Else
Call TitleSEO_Default(Ftemplate)
End If
End Function
將上面這段代碼替換為下面這段代碼:
Function TitleSEO_Catalog(ByRef Ftemplate)
If IsEmpty(Ftemplate) Then Exit Function
If Request.QueryString("cate") "" Or Request.QueryString("auth") "" Or Request.QueryString("date") "" Or Request.QueryString("tags") "" Then
Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"#BlogTitle# #ZC_MSG044# #ZC_BLOG_TITLE#")
elseif Request.QueryString("page") "" then
Call TitleSEO_Default(Ftemplate)
else
Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"#BlogTitle# #ZC_MSG044# #ZC_BLOG_TITLE#")
end if
End Function
Z-blog的欄目分類有各自不同的id,可以采取約束每個分類id讀取相應(yīng)頁面模板的辦法,來加以區(qū)分。例如命令“catalog.asp?cate=1”(其中1為該分類在數(shù)據(jù)庫里的id)即“分類1”單獨(dú)指向模板頁面“catalog1.html”;命令“catalog.asp?cate=2”即“分類2”單獨(dú)指向模板頁面“catalog2.html”……依此類推,來實(shí)現(xiàn)各欄目分類模板的個性化。 Z-Blog定義不同分類目錄頁面模板的步驟: 1.用文本工具打開Z-Blog的FUNCTION/目錄下的c_system_base.asp文件,在2618行附近找到代碼ArtList.template="CATALOG",將其替換為以下代碼: ArtList.template="CATALOG" intCateId 2.用文本工具打開Z-Blog根目錄下的catalog.asp文件,在41行附近找到代碼 ArtList.template="CATALOG",將其替換為以下代碼: ArtList.template="CATALOG" Request.QueryString("cate") If ArtList.template="" Then ArtList.template="CATALOG" Else ArtList.template="CATALOG" Request.QueryString("cate") End If
你的意思是把文章標(biāo)題下面的,分類,瀏覽次數(shù),作者等信息刪除嗎?這個要修改模板文件的,要在single里面改的,可以參考下的。。