This plugin is outdated and might not be supported anymore
Details
View on WordPress

If you need to implement a custom post type for human beings, where in lieu of a title you need a name, this plugin will add the proper UI. See screenshots for an example.

Usage

When creating your custom post type, just make sure you specify name as one of the post type’s features. (As of version 0.1, the title feature, quite counterintuitively, is also required as in the example below.)

register_post_type( 'people', array(     'label' => 'People',     'supports' => array( 'title', 'name', ... )     ... ) ); 

Name Support also gives you the template tags the_name() and get_the_name() which prints or returns the name in “[First Name] [Last Name]” format.

Development of this plugin was supported by the Arts at MIT.

Details

Plugin code:
name-support
Plugin version:
0.1
Outdated:
Yes
WP version:
3.2 or higher
PHP version:
or higher
Test up to WP version:
3.3.2
Total installations:
0
Last updated:
2011-12-24
Rating:
Times rated:
0
cpt
custom-post-type
infrastructure
name
people
person
post-type