我正在将旧网站迁移到 WordPress。我必须迁移大约 100,000 页。我写了一个插件,它使用wp_insert_post.
我还想在不使用重定向的情况下迁移旧的 URL 结构(因为据说每个 301 重定向都会失去一些链接能力),而是使用永久链接。每当我设置一个包含斜杠(目录结构)的固定链接时,斜杠都会被替换为“-”。这就是问题。
wp_insert_post(array=>('post_name' => 'slashes/go/there/'));
permalink = 'slashes-go-there-';
Run Code Online (Sandbox Code Playgroud)
任何想法如何为每个页面单独设置永久链接将不胜感激?