This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Name Support

Description

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.

Screenshots

  • An example of the name entry UI which replaces the regular title entry UI.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Name Support” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Name Support” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

0.1

  • Initial upload