Get posts with tag all post types

You could use

$query_args = array(
    'tag' => $tag,
    'post_type' => 'any',
);
$query = new WP_Query( $query_args );

Please have a look here: Tag Parameters and Type Parameters.

Leave a Comment