Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 WordPress 中创建了一个多站点网络,但我对所有站点都使用了相同的主题,并且我想让所有站点的 404 页面都不同。使用 WordPress 多站点网络可以做到这一点吗?
我很确定这是正确的语法($blog_id多站点安装中每个站点的 ID 在哪里):
$blog_id
<?php global $blog_id; if ($blog_id == 2) { code here; } elseif ($blog_id == 3) { and here; } else { and default here; } ?>
您有一个 404 文件,但您可以根据站点 ID 更改输出。