We would like to know that how we occur error when we implement this code in our sidebar.php
$categories = get_categories();
foreach($categories as $category)
{
printf('<h2>%s</h2><ul>', $category->cat_name);
$posts = new WP_Query('cat=".$category->cat_ID);
while($posts->have_posts())
{
$posts->the_post();
echo "<li>', the_title(), '</li>';
}
print '</ul>';
}
The error we are getting:
Fatal error: Cannot use object of type WP_Query as array in C:\xampp\htdocs\wordpress\wp-includes\query.php on line 2374