Title: comment admin for custom post types
Last modified: August 20, 2016

---

# comment admin for custom post types

 *  [Matzze](https://wordpress.org/support/users/matzze/)
 * (@matzze)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/comment-admin-for-custom-post-types/)
 * Hi there,
 * I registered a custom post type with option to comment:
 *     ```
       $args = array(
       				'labels' => $labels,
       				'public' => true,
       				'publicly_queryable' => true,
       				'show_ui' => true,
       				'query_var' => true,
       				'menu_icon' => null,
       				'rewrite' => array('slug' => __('mycpt', 'mycpt')),
       				'capability_type' => 'post',
       				'hierarchical' => false,
       				'menu_position' => null,
       				'supports' => array(
       									'title',
       									'editor',
       									'comments'
       									)
       				);
   
       	register_post_type( 'mycpt' , $args );
       ```
   
 * So it’s commentable. Works fine in front end.
 * But the posted comments are not shown in admin under “comments”. They exist and
   i can find them in db via phpmyadmin, but for some unknown reasons they are not
   listed in the admin. Is there an option for “dont show comments related to a 
   custom post type” or something like this?
 * thx

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/comment-admin-for-custom-post-types/#post-3038547)
 * Sorry… totally misread your code
 *  Thread Starter [Matzze](https://wordpress.org/support/users/matzze/)
 * (@matzze)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/comment-admin-for-custom-post-types/#post-3038565)
 * sorry, the only relevant part is the `support => array ('comments')` part, just
   for showing how i registered comments for my custom post type.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘comment admin for custom post types’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [Matzze](https://wordpress.org/support/users/matzze/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/comment-admin-for-custom-post-types/#post-3038565)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
