Get posts with tag all post types

I’m trying to get all posts that have a specific tag, regardless of what type of post that is. I’ve tried every solution I’ve found (here on SO and further), but nothing works: I always only get the normal ‘post’ type from my wp_query.

I’ve tried this:

Read More
$query_args = array(
        'tag' => $tag,
        'post_type' => array('post', 'praktijk', 'expert', 'download', 'product', 'event')
    );

    $query = new WP_Query( $query_args );

And I would think that would work. Replacing the array of post_types with the string ‘any’ also doesn’t work.

Does anybody know what I’m doing wrong?

Related posts

Leave a Reply

1 comment