1
shiniv 2014-09-02 20:49:51 +08:00 1
如果这样的话,parentCategory 的重写就跟 permalink 冲突了把
|
2
justfindu OP @shiniv 对, 看样子是实在不行这样了 只能够parentCategory和subCategory都一样的重写吧...
|
3
webjin 2014-09-02 21:52:05 +08:00
Google字体我一直搞不定。
|
4
shiniv 2014-09-02 22:14:50 +08:00 1
@justfindu 给个参考你,要生效就要到固定链接那里保存一下即可。
function rewrite_category_rules($rules) { $rewrite = array( 'category/(.+?)/?$' => 'index.php?category_name=$matches[1]', 'category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$' => 'index.php?category_name=$matches[1]&feed=$matches[2]', 'category/(.+?)/(feed|rdf|rss|rss2|atom)/?$' => 'index.php?category_name=$matches[1]&feed=$matches[2]', 'category/(.+?)/page/?([0-9]{1,})/?$' => 'index.php?category_name=$matches[1]&paged=$matches[2]', ); return array_merge($rewrite, $rules); } add_filter('post_rewrite_rules', 'rewrite_category_rules'); @webjin google 字体要么替换,要么禁用~ 搜索一下一堆堆的 |
5
mjar 2014-09-02 22:33:30 +08:00 1
插件可以解决.
WP No Category Base Removes '/category' from your category permalinks. |