Title: Model Categories?
Last modified: August 21, 2016

---

# Model Categories?

 *  [MWMedia](https://wordpress.org/support/users/mikewiesman/)
 * (@mikewiesman)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/model-categories/)
 * I am wondering if there is a way to add custom categories or tags to each model.
   I would like to be able to list all the talent filtered by guys, girls, kids 
   as well as what areas of talent that each individual is available for, such as
   voice-over, acting and other specific areas of interest. Not sure if this would
   be possible, but does seem like it should be a fairly easy thing to implement?
   Thanks for your response in advance.
 * [http://wordpress.org/plugins/wp-models/](http://wordpress.org/plugins/wp-models/)

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

 *  Plugin Author [actionhook](https://wordpress.org/support/users/actionhook/)
 * (@actionhook)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/model-categories/#post-4061573)
 * Mike–
 * Good suggestion. Let me discuss with my partner developer and see what we can
   do.
 *  [cp2014](https://wordpress.org/support/users/cp2014/)
 * (@cp2014)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/model-categories/#post-4061681)
 * Hi guys, how can I can show up the post directly? I mean when I add a “model”
   I can see the preview but I can´t get that it appears like post o page… Thank
   you and congratulations for this great plugin
 *  [kidstoppicks](https://wordpress.org/support/users/kidstoppicks/)
 * (@kidstoppicks)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/model-categories/#post-4061682)
 * How do you use this plugin? I have the plugin listed in my menu settings but 
   where do you place the the info to allow models to use it?
    Help! David
 *  [kidstoppicks](https://wordpress.org/support/users/kidstoppicks/)
 * (@kidstoppicks)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/model-categories/#post-4061683)
 * How do you use this plugin? I have the plugin listed in my menu settings but 
   where do you place the the info to allow models to use it?
    Help! David
 *  [manendra](https://wordpress.org/support/users/manendra/)
 * (@manendra)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/model-categories/#post-4061693)
 * hello mikewiesman you can add taxonomoy = category for models post type .under
   plugind directory go to plugins->wp-models->app->models open model_cpt_models.
   php file and add this line ‘taxonomies’ => array(‘category’), in init_args function’s
   $this->args = array();
    Before :
 *     ```
       protected function init_args( $uri, $txtdomain )
       		{
       			$labels = array(
       				'name'                => _x( 'Models', 'Post Type General Name', $txtdomain ),
       				'singular_name'       => _x( 'Model', 'Post Type Singular Name', $txtdomain ),
       				'menu_name'           => __( 'Models', $txtdomain ),
       				'parent_item_colon'   => __( 'Parent Model', $txtdomain ),
       				'all_items'           => __( 'All Models', $txtdomain ),
       				'view_item'           => __( 'View Model', $txtdomain ),
       				'add_new_item'        => __( 'Add New Model', $txtdomain ),
       				'add_new'             => __( 'New Model', $txtdomain ),
       				'edit_item'           => __( 'Edit Model', $txtdomain ),
       				'update_item'         => __( 'Update Model', $txtdomain ),
       				'search_items'        => __( 'Search models', $txtdomain ),
       				'not_found'           => __( 'No models found', $txtdomain ),
       				'not_found_in_trash'  => __( 'No models found in Trash', $txtdomain ),
       			);
   
       			$this->args = array(
       				'description'         	=> __( 'Models', $txtdomain ),
       				'labels'              	=> $labels,
       				'supports'            	=> array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),
       				'hierarchical'        	=> false,
       				'public'              	=> true,
       				'show_ui'             	=> true,
       				'show_in_menu'        	=> true,
       				'show_in_nav_menus'   	=> true,
       				'show_in_admin_bar'   	=> true,
       				'menu_icon'           	=> trailingslashit( $uri ) . 'images/model-icon.png',
       				'can_export'          	=> true,
       				'has_archive'         	=> true,
       				'exclude_from_search' 	=> false,
       				'publicly_queryable'  	=> true,
       				'rewrite' 			  	=> array( 'slug' => 'models' )
       			);
       		}
       ```
   
 * After :
 *     ```
       protected function init_args( $uri, $txtdomain )
       		{
       			$labels = array(
       				'name'                => _x( 'Models', 'Post Type General Name', $txtdomain ),
       				'singular_name'       => _x( 'Model', 'Post Type Singular Name', $txtdomain ),
       				'menu_name'           => __( 'Models', $txtdomain ),
       				'parent_item_colon'   => __( 'Parent Model', $txtdomain ),
       				'all_items'           => __( 'All Models', $txtdomain ),
       				'view_item'           => __( 'View Model', $txtdomain ),
       				'add_new_item'        => __( 'Add New Model', $txtdomain ),
       				'add_new'             => __( 'New Model', $txtdomain ),
       				'edit_item'           => __( 'Edit Model', $txtdomain ),
       				'update_item'         => __( 'Update Model', $txtdomain ),
       				'search_items'        => __( 'Search models', $txtdomain ),
       				'not_found'           => __( 'No models found', $txtdomain ),
       				'not_found_in_trash'  => __( 'No models found in Trash', $txtdomain ),
       			);
   
       			$this->args = array(
       				'description'         	=> __( 'Models', $txtdomain ),
       				'labels'              	=> $labels,
       				'supports'            	=> array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),
       				'hierarchical'        	=> false,
       				'public'              	=> true,
       				'show_ui'             	=> true,
       				 'taxonomies' => array('category'),
       				'show_in_menu'        	=> true,
       				'show_in_nav_menus'   	=> true,
       				'show_in_admin_bar'   	=> true,
       				'menu_icon'           	=> trailingslashit( $uri ) . 'images/model-icon.png',
       				'can_export'          	=> true,
       				'has_archive'         	=> true,
       				'exclude_from_search' 	=> false,
       				'publicly_queryable'  	=> true,
       				'rewrite' 			  	=> array( 'slug' => 'models' )
       			);
       		}
       ```
   

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

The topic ‘Model Categories?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-models_4b6268.svg)
 * [WP Models](https://wordpress.org/plugins/wp-models/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-models/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-models/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-models/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-models/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-models/reviews/)

 * 5 replies
 * 5 participants
 * Last reply from: [manendra](https://wordpress.org/support/users/manendra/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/model-categories/#post-4061693)
 * Status: not resolved