如何检测WordPress mu子博客的主页上下文

时间:2016-09-07 作者:user310291

我想在单击主页图标时执行此操作:

如果我们不在子博客的主页上,请转到子博客的主页。如果我们在子博客的主页上,请转到整个网站的主页。我是初学者,不知道如何检测wordpress mu子博客主页的上下文,有什么想法吗,谢谢?

1 个回复
最合适的回答,由SO网友:MediaFormat 整理而成

您可以使用以下条件进行测试

//if you aren\'t on the main site, and aren\'t on the homepage
if (!is_main_site() && (!is_front_page() && !is_home())) {
  print "<a href=\'sub-blog-homepage\'>home</a>";
}
//if you aren\'t on the main site, and aren on the homepage
if (!is_main_site() && (is_front_page() && is_home())) {
  print "<a href=\'main-site-homepage\'>home</a>";
}
此外,根据您的子博客主页的配置方式,您可以使用is_front_page(), is_home().