Problem with cpt
-
I would like to use a cpt for my podcast. But every time I create the cpt, the podcast episode box does not appear below the content.
Here is the cpt declaration I used.register_post_type('podcast', array( 'show_in_rest' => true, 'has_archive' => true, 'supports' => array('title', 'editor', 'thumbnail'), 'taxonomies' => array( 'category' ), 'public' => true, 'capability_type' => 'post', 'rewrite' => true, 'hierarchical' => false, 'labels' => array( 'name' => 'Podcasts', 'add_new_item' => 'Add A Nouveau Podcast', 'edit_item' => 'Edit Podcast', 'all_items' => 'All Podcasts', 'singular_name' => 'Podcast' ), 'menu_icon' => 'dashicons-microphone' ));
So I don’t know what I’m doing wrong
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Problem with cpt’ is closed to new replies.