En basit şekilde; functions.php'ye ekleyin

add_action( 'init', 'create_posttype' );
function create_posttype() {
  register_post_type( 'dizi_cpt',
    array(
      'labels' => array(
        'name' => __( 'Diziler' ),
        'singular_name' => __( 'Dizi' )
      ),
      'public' => true,
      'has_archive' => true,
      'rewrite' => array('slug' => 'diziler'),
    )
  );
}
Bunu yaptiginizda paneldeki menulere tipki yazilar, sayfalar gibi diziler adinda bir secenek eklenecek. Dizilerinizi oraya ekleyip siteadi.com/diziler/diziadi gibi erisebilirsiniz.

daha detayli bilgi icin; sunlari inceleyin

https://codex.wordpress.org/Post_Types
https://codex.wordpress.org/Function...ster_post_type

yok ben bunlarla ugrasamam derseniz; haziri da var

https://wordpress.org/plugins/custom-post-type-ui/