カスタム投稿タイプを作成しましたが、カスタム投稿タイプなしですべての投稿を表示したいと思います。このようなカスタム投稿を表示しました
$args = array(
'post_type' => 'badge',
);
// The query itself
$sb_user_query = new WP_Query( $args );
// The loop
while ( $sb_user_query->have_posts() ) : $sb_user_query->the_post();
$badge_id = $sb_user_query->post->ID;
$badge_title = get_the_title();
$author = get_the_author();
$author_id = get_the_author_ID();
$badge_image_small = get_the_post_thumbnail( $badge_id, array(16,16) );
$post_data = get_post_meta( $badge_id, '_metabox', true );
$comment_data = get_post_meta( $badge_id, '_comments', true );
echo $author.$badge_image_small;
endwhile;
今、「バッジ」投稿タイプなしですべての投稿タイプを表示したいと思います。どうすればこれを行うことができますか、助けてください。