你可以这样重写URL
add_action("wp_loaded", function () {
add_rewrite_tag("%id%", "([^&]+)");
add_rewrite_rule(
\'^details/[^&]+/([0-9]+)/?\',
\'index.php?id=$matches[1]&pagename=details\',
\'top\'
);
});
然后在设置->永久链接中刷新重写规则缓存一次。
通过这种重写,标识符不再位于$_GET
但你可以用https://codex.wordpress.org/Function_Reference/get_query_var.