我目前正在做一个项目,我需要这个来操纵参数以达到美学目的。
add_rewrite_rule( '([^/]*)/user/([^/]+)','index.php?pagename=$matches[1]&username=$matches[2]', 'top' );
-> would correctly retrieve the userID (in this case 232) from the following URL: http://mysite.com/userlisting/user/232
add_rewrite_rule( '([^/]*)/([^/]*)/user/([^/]+)','index.php?pagename=$matches[1]&username=$matches[2]', 'top' );
-> would correctly retrieve the userID (in this case 232) from the following URL: http://mysite.com/parent_directory/userlisting/user/232
现在我可以添加,比如说其中的 10 条规则,以确保我至少完成了 10 级层次结构,但我想做的是根据当前“用户列表”有多少级别,让它变得有点动态。
任何帮助将不胜感激。