谢谢@BA\\u Webimax
我在我的子域页面中使用此查询从我的主域页面获取数据,从而找到了解决方案。主域博客ID为(1)。例如,子域是2和3。
<?php switch_to_blog(1); ?>
<?php restore_current_blog(); ?>
如下所示,在子域的页面上显示我的域ID 1中类别为“products”的帖子的所有标题:
<?php
switch_to_blog(1); //define the domain containing the posts
$args = array(\'category_name\' => \'products\' , \'orderby\' => \'title\', \'order\' => \'ASC\' );
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<?php the_title(); ?>
<?php endforeach;
restore_current_blog(); //switch back to the actual domain
wp_reset_postdata();?>
希望这会有帮助!在处理子域时非常有用。它还可以从自定义字段和高级自定义字段中获取数据。。。
最好的