共计 340 个字符,预计需要花费 1 分钟才能阅读完成。
在最新版 2.0 中,怎么去掉摘要的 html 代码和控制摘要的长度呢?
找到 zb_system/function/c_system_lib.asp
打开上面的文件。在 740 行左右有一条注释了的语句‘if len(intro)=0 then intro=left(content,zc_article_excerpt_max) & "…" 将注释去掉,改为
if len(intro)>0 then intro=left(content,zc_article_excerpt_max) & "……"
intro=transferhtml(intro,"[nohtml]")
这样就没有 html 代码和可以控制长度了,注意 zc_article_excerpt_max 这个参数在 c_option.asp 文件中修改!
正文完