我有一部分职能。php文件(在我运行die()时,它肯定正在运行,如图所示)
具体如下:
function looky_setPermalink() {
add_rewrite_rule(
"looky/([^/]*)/([^/]*)/?",
"index.php?page_id=4006&page_id=4006&a=view&cat=$matches[1]&where=$matches[2]",
"top"
);
}
add_action( \'init\', \'looky_setPermalink\' );
当我去寻找/分类/位置时,它似乎不起作用,我只是被告知它找不到。你有没有发现我可能做错了什么?
当做
马特