wordpress自定义add_rewrite_rule不适用于分页

问题描述 投票:0回答:1

我在functions.php文件中有以下功能。它的作用是它允许我一起使用2个自定义分类法。

function nfh_custom_rewrite_rules() {
   add_rewrite_rule('^product_cat/(.*)/bins/(.*)?', 'index.php?product_cat=$matches[1]&bins=$matches[2]', 'top');
}
add_action('init', 'nfh_custom_rewrite_rules');

所以我可以有这样的URL:

mysite.com/product_cat/homeware/bins/promo/

..这很好用

我遇到的问题是分页似乎不起作用。我一进入第2页:

mysite.com/product_cat/homeware/bins/promo/page/2/

它只是抛出一个未找到的错误。

任何帮助将不胜感激

php wordpress url-rewriting
1个回答
1
投票

我没有测试,但检查如下。这可能有所帮助。

function nfh_custom_rewrite_rules() {
   add_rewrite_rule('^product_cat/(.*)/bins/(.*)/page/([0-9]{1,})/?', 'index.php?product_cat=$matches[1]&bins=$matches[2]&paged=$matches[3]', 'top');
}
add_action('init', 'nfh_custom_rewrite_rules');
© www.soinside.com 2019 - 2024. All rights reserved.