我正在为我的WordPress多站点使用子目录,帖子由单目录控制。php。怎样才能指导单身。php在子目录中为站点使用不同的页眉和页脚文件?
我尝试使用get\\u current\\u blog\\u id,但似乎不起作用。例如:
$current_blog = get_current_blog_id();
if ($current_blog == 2) {
get_template_part(\'header\', \'blog2\');
} else {
get_header();
}
Edit
我能够使用in\\u category,因此这是我目前的解决方案:
if (in_category(\'News\')) {
get_template_part(\'header\', \'blog2\');
} else {
get_header();
}