Bir kategori için register_post_type kullanıp özel alan oluşturdum ancak normal bir gönderi olarak görünmüyor, nasıl görünmesini sağlayabilirim bilmiyorum ve kaynak bulamadım?

Yani "Yazılar" kısmında oluşturduğum gibi çalışması gerekiyor.

Kodlar şu şekilde:

// Register Custom Post Type
function arabalar_post_type() {
    $labels = array(
        'name'                  => 'Arabalar',
    );
    $args = array(
        'label'                 => 'Arabalar',
        'description'           => 'Araba Modelleri İle İlgili İçerikler.',
        'supports'              => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments', 'trackbacks', 'revisions', 'custom-fields', 'page-attributes', 'post-formats' ),
        'taxonomies'            => array( 'category' ),
        'hierarchical'          => false,
        'public'                => true,
        'menu_position'         => 5,
        'has_archive'           => true,
        'show_in_rest'            => true,
        'capability_type'       => 'post',
    );
    register_post_type( 'arabalar', $args );
}
add_action( 'init', 'arabalar_post_type', 0 );