-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Description
Hello
I'm trying to use this tool so query a CPT in a network with the followong code:
` $args = array(
'post_type' => 'petite-annonces',
'sites' => array(
'sites__in' => array( 1,2 ),
)
);
$query = new WP_Query_Multisite( $args );
while( $query->have_posts() ) : $query->the_post();
$blog_id = get_current_blog_id();
echo $blog_id . get_the_title() . "<br>";
endwhile;
wp_reset_postdata();`
I get post from sites 1 but not the site with id 2...
Any idea to help me me?
Metadata
Metadata
Assignees
Labels
No labels