Title: more2come3's Replies | WordPress.org

---

# more2come3

  [  ](https://wordpress.org/support/users/more2come3/)

 *   [Profile](https://wordpress.org/support/users/more2come3/)
 *   [Topics Started](https://wordpress.org/support/users/more2come3/topics/)
 *   [Replies Created](https://wordpress.org/support/users/more2come3/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/more2come3/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/more2come3/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/more2come3/engagements/)
 *   [Favorites](https://wordpress.org/support/users/more2come3/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type Creator] [Plugin: Custom Post Type Creator] WCK Post Type Creator showing only 4 post type](https://wordpress.org/support/topic/plugin-custom-post-type-creator-wck-post-type-creator-showing-only-4-post-type/)
 *  [more2come3](https://wordpress.org/support/users/more2come3/)
 * (@more2come3)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-custom-post-type-creator-wck-post-type-creator-showing-only-4-post-type/#post-2874748)
 * To be able to show all custom post types on the admin left menu, you have to 
   modify the wck-cptc.php.
 * Change the position value from this:
 *     ```
       $args = array(
       	'page_title' => 'Wordpress Creation Kit',
       	'menu_title' => 'WCK',
       	'capability' => 'edit_theme_options',
       	'menu_slug' => 'wck-page',
       	'page_type' => 'menu_page',
       	'position' => 30 // Right after comments menu and the other
       );
       ```
   
 * to
 *     ```
       $args = array(
       	'page_title' => 'Wordpress Creation Kit',
       	'menu_title' => 'WCK',
       	'capability' => 'edit_theme_options',
       	'menu_slug' => 'wck-page',
       	'page_type' => 'menu_page',
       	'position' => 66 // Right after Plugins menu and the other
       );
       ```
   
 * this would allow your more than 4 custom post types to be displayed.

Viewing 1 replies (of 1 total)