I need to do a simple post query that will get any post that has at least one tag. This is my current code that gets the posts with tag ID 27 or 36, but I need to modify it to get all posts with at least one tag.
$args = array(
'numberposts' => 5,
'tag__in' => array(27,36)
);
$myposts = get_posts( $args );
You could try this.