Title: [Plugin: Flexible Custom Post Type] Additional Labels
Last modified: August 20, 2016

---

# [Plugin: Flexible Custom Post Type] Additional Labels

 *  [Rob Barrett](https://wordpress.org/support/users/rob-barrett/)
 * (@rob-barrett)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-flexible-custom-post-type-additional-labels/)
 * Just a quick suggestion to complete the Labels for the Custom Post Types. At 
   the moment, when adding a new custom post type, the Add page say ‘Add New Post’
   instead of, say, ‘Add New Product’.
 * To address this, I’ve edited the _register\_post\_type_ array starting on Line
   86. Firstly, by removing the _label_ and _singular label_ parameters, and adding
   this parameter to the array:
 *     ```
       'labels' => array(
       'name' => __( $post_type['label'] ),
       'singular_name' => __( $post_type['singular_label'] ),
       'add_new' => __( 'Add New' ),
       'add_new_item' => __( 'Add New '.$post_type['singular_label'] ),
       'edit' => __( 'Edit' ),
       'edit_item' => __( 'Edit '.$post_type['singular_label'] ),
       'new_item' => __( 'New '.$post_type['singular_label'] ),
       'view' => __( 'View '.$post_type['singular_label'] ),
       'view_item' => __( 'View '.$post_type['singular_label'] ),
       'search_items' => __( 'Search '.$post_type['label'] ),
       'not_found' => __( 'No '.$post_type['label'].' found' ),
       'not_found_in_trash' => __( 'No '.$post_type['label'].' found in Trash' ),
       'parent' => __( 'Parent '.$post_type['singular_label'] ),
       ),
       ```
   
 * [http://wordpress.org/extend/plugins/flexible-custom-post-type/](http://wordpress.org/extend/plugins/flexible-custom-post-type/)

The topic ‘[Plugin: Flexible Custom Post Type] Additional Labels’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/flexible-custom-post-type.svg)
 * [Flexible Custom Post Type](https://wordpress.org/plugins/flexible-custom-post-type/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/flexible-custom-post-type/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/flexible-custom-post-type/)
 * [Active Topics](https://wordpress.org/support/plugin/flexible-custom-post-type/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/flexible-custom-post-type/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/flexible-custom-post-type/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [Rob Barrett](https://wordpress.org/support/users/rob-barrett/)
 * Last activity: [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-flexible-custom-post-type-additional-labels/)
 * Status: not a support question