Та же таксономия добавить несколько типов после

$articles_in_post_type = get_posts( array(
    'fields' => 'ids',
    'post_type' => 'post',
    'posts_per_page' => -1,
));
$tags = wp_get_object_terms( $articles_in_post_type, 'post_tag', array('ids') );
Clean Cicada