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 3.3.2模式。multisitesub-domain
WordPress 3.3.2
multisite
sub-domain
我想添加一个新的sub-domain,但让它“离线”,直到我完成它的工作。是否有捷径可寻?
我知道如果它是一个站点,我可以if在头文件中添加一个,并且该站点将只对我在线,但在这种情况下,我的所有站点都使用该主题,使其成为相同的头文件,从而制定此解决方案无效的。
if
谢谢你。
您可以检查主题中的当前博客 ID,例如:
<?php if (get_current_blog_id() == 1): ?> <?php //do stuff ?> <?php return ?> <?php endif ?>