How to limit posts by category

bunu kullan

$author_posts = new WP_Query( array(
‘cat’ => ‘1,3’,
‘post_type’ => ‘any’,
‘post_status’ => ‘publish’,
‘author’ => $user_id,
‘fields’ => ‘ids’,
‘monthnum’ => date( ‘m’ ), // Whatever the current month is
) );