可以使用两个内置函数来执行此操作。
- switch_to_blog
- get_stylesheet_directory_uri
您可以通过以下方式使用这两种方法来生成一个函数,该函数将为您提供主题的url。将下面的
functions.php
文件
function wpse_get_theme_url( $blog_id = 1 ){
switch_to_blog( $blog_id );
$template_url = get_stylesheet_directory_uri();
restore_current_blog(); // Switch back to the original blog
return $template_url;
}
现在,您可以使用上述函数获取url,方法是使用该函数并传递博客id/子站点id。
$theme_url = wpse_get_theme_url( $blog_id );
// Replace the $blog_id with blog id of your sub sites.