文章标签 ‘中文标签’

原帖地址:http://wordpress.org.cn/thread-23025-1-1.html 中文标签页面无法显示的解决办法 1.首先打开/wp-includes/rewrite.php 文件 2.打开rewrite.php找到下面的一段代码: function get_tag_permastruct() { if (isset($this->tag_structure)) { return $this->tag_structure; } if (empty($this->permalink_structure)) { 3.修改 if (empty($this->permalink_structure)) { 这段代码为 if (! empty($this->permalink_structure)) { 也就是在empty前面添加一个英文呢感叹号(!). 注意:rewrite.php下有很多处都有 if (empty($this->permalink_structure)) { 这样的代码,一定要找到相应的位置. 二.中文分类页面无法显示的解决办法: 1.进入后台,管理–页面–标题框中下面有一个永久链接选项,编辑为英文链接即可.

2009年5月16日00:50 | 4 条评论