为您的案例注册重写规则和重写标记的正确方法是:
function custom_rewrite_rules() {
add_rewrite_tag(\'%nights%\', \'([^&]+)\');
add_rewrite_tag(\'%people%\', \'([^&]+)\');
add_rewrite_rule(\'house/(.+)/(.+)/(.+)/?$\', \'index.php?house=$matches[1]&nights=$matches[2]&people=$matches[3]\', \'top\');
}
add_action(\'init\', \'custom_rewrite_tag\', 10, 0);
代码已经过测试,工作正常。