Vuoi whereIn
con un array dei tuoi ID da controllare...
$news = News::whereHas('newsCategories', function($q) use($array_of_ids)
{
$q->whereIn('category_id', $array_of_ids)
->orderBy('created_at', 'desc');
})->get();
Assicurati solo di passare qualcosa che sia veramente un array :)