论坛SEO中主题摘要{summary}标签没有用!在后台全局--SEO设置--论坛SEO--帖子内容 我填写的是 {subject}:{summary}
当你去看论坛的帖子内容时,主题摘要{summary}除对管理员有效外,其他人都无效!
可以做如下修改:
找到 source\module\forum\forum_viewthread.php
搜索:
- $_G['forum_firstpid'] = $post['pid'];
- if($_G['forum_thread']['price']) {
- $summary = str_replace(array("\r", "\n"), '', messagecutstr(strip_tags($thread['freemessage']), 160));
- } else {
- $summary = str_replace(array("\r", "\n"), '', messagecutstr(strip_tags($post['message']), 160));
- }
复制代码
修改为:
- $_G['forum_firstpid'] = $post['pid'];
- if($_G['forum_thread']['price']) {
- $summary = str_replace(array("\r", "\n"), '', messagecutstr(strip_tags($post['message']), 240));
- } else {
- $summary = str_replace(array("\r", "\n"), '', messagecutstr(strip_tags($post['message']), 240));
- }
复制代码
就OK了! |