Title: Does not display CPT
Last modified: August 21, 2016

---

# Does not display CPT

 *  [Julian Weinert](https://wordpress.org/support/users/julian_weinert/)
 * (@julian_weinert)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/does-not-display-cpt/)
 * The plugin does not display any CPTs on my installation
 * [https://wordpress.org/plugins/add-custom-post-types-archive-to-nav-menus/](https://wordpress.org/plugins/add-custom-post-types-archive-to-nav-menus/)

Viewing 1 replies (of 1 total)

 *  [Aldrick The webguy](https://wordpress.org/support/users/koykoy/)
 * (@koykoy)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/does-not-display-cpt/#post-4715216)
 * Are you using custom post types plugin? coz if you do, it won’t appear on your
   list. . what I did is make my own custom post type in functions.php
 *     ```
       add_action( 'init', 'create_post_type' );
       function create_post_type() {
           register_post_type( 'eventsall',
               array(
                   'labels' => array(
                       'name' => __( 'eventsall' ),
                       'singular_name' => __( 'eventall' )
                   ),
               'public' => true,
               'has_archive' => true,
               )
           );
       }
       ```
   
 * then after this you will be able to see it in the list on your menu. . Hope this
   will help. .

Viewing 1 replies (of 1 total)

The topic ‘Does not display CPT’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/add-custom-post-types-archive-to-
   nav-menus_f8f8f8.svg)
 * [Custom Post Type's Archive in WP Nav Menu](https://wordpress.org/plugins/add-custom-post-types-archive-to-nav-menus/)
 * [Support Threads](https://wordpress.org/support/plugin/add-custom-post-types-archive-to-nav-menus/)
 * [Active Topics](https://wordpress.org/support/plugin/add-custom-post-types-archive-to-nav-menus/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/add-custom-post-types-archive-to-nav-menus/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/add-custom-post-types-archive-to-nav-menus/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Aldrick The webguy](https://wordpress.org/support/users/koykoy/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/does-not-display-cpt/#post-4715216)
 * Status: not resolved