我正在尝试使用add\\u rewrite\\u rule()解决我遇到的分页问题。经过大量研究,我知道了答案。但add\\u rewrite\\u rule()的第二个参数似乎永远都不起作用。
add_action( \'init\', \'add_category_base_rewrite_rule\' );
function add_category_base_rewrite_rule() {
add_rewrite_rule(
\'publicacoes/(.+?)/page/?([0-9]{1,})/?$\',
\'index.php?post_type=artigo&category_name=$matches[1]&paged=$matches[2]\',
\'top\'
);
}
我正在使用插件
Debug This 检查重写规则
如您所见,第二个参数与我在函数中输入的参数不匹配。不管我做什么,它都不起作用。
我知道函数正在被调用,因为它将我的规则置于首位。
我做错了什么?