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