From aa23b5d707193d83012315edd629b47caa713cee Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 2 Sep 2013 22:59:10 -0300 Subject: [PATCH] fix example --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index bca1836..ca32ba0 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,7 @@ To modify what sites are queried, create a 'sites' element in the $args in the c ```php $args = array( 'multisite' => 1, - 'sites' => array( - 'sites__in' => array( 1, 2, 3, 5) - ) + 'sites__in' => array( 1, 2, 3, 5) ); $query = new WP_Query( $args ); while($query->have_posts()) : $query->the_post();