>
Download This Plugin | |
Download Elegant Themes | |
Name | Name Support |
Version | 0.1 |
Author | mitcho (Michael Yoshitaka Erlewine) |
Rating | 0 |
Last updated | 2011-12-24 04:25:00 |
Downloads |
388
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Name Support plugin added 13 bytes of resources to the Home page and 26 bytes of resources to the sample Post page.
Name Support plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Name Support plugin ads no tables to your Wordpress blog database.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.
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.