您可以使用以下条件进行测试
//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()
.