Hide post by ‘post_category’

If you want to get the posts with that category

$myposts = get_posts(array(
'p' => $pid,
'posts_per_page' => -1,
'post_type' => 'post',
'category__in' => array( 4 ),
'post_status' => 'publish',
'author' => $value[0],
));

If you want to get the posts without that category

$myposts = get_posts(array(
'p' => $pid,
'posts_per_page' => -1,
'post_type' => 'post',
'category__not_in' => array( 4 ),
'post_status' => 'publish',
'author' => $value[0],
));

Take a look at this, may helps you in the future: https://gist.github.com/luetkemj/2023628