Wordpress重写规则检查器插件

时间:2013-08-08 20:02:54

标签: php regex wordpress wordpress-plugin

我正在使用这个Rewrite Rules Inspector插件来查看我的重写规则,如果我的代码中有任何错误并且我有一个:

add_rewrite_rule(
    '/?([^/]+(?<!categories))/([^/]+)/?$',//preg_quote('/?([^/]+(?<!categories))/([^/]+)/?$')
    'index.php?list-item=$matches[2]&post_type=list-item',
    'top'
);

我有两个问题:

1-此代码适用于我放置的所有内容类型不适用于类别页面它给我错误** preg_match()[function.preg-match]:未知修饰符'c'**

2-如何更改类别页面以从自定义内容类型获取而不是从帖子类型获取。

0 个答案:

没有答案