Subtitle
Displays subtitle text field after the title in post, page and other post type edit page.
The facts
- Rating
- 3★ from 2
- Active installs
- 100+
- Price
- Free
- Last updated
- 1 May 2013
- Added
- May 2013
- Requires WP
- 3.5.1
- Tested up to
- WP 3.5.2
- Downloads
- 4,578
Our analysis
AI-assistedSubtitle is a WordPress plugin that adds a subtitle text field to the edit pages of posts, pages, and other custom post types. This field appears after the title and can be customised or hidden based on specific post types using hooks. The plugin is suitable for users who want to enhance their content with additional subtitle information.
Best for: This plugin is best for content creators looking to add subtitles to their posts and pages.
What it does well
- ✓Adds a subtitle field after the title
- ✓Customisable label for the subtitle field
- ✓Can hide the subtitle field in specific post types
Where it falls short
- •Limited information on features
- •Last updated in May 2013
- •Compatibility only tested up to WordPress 3.5.2
Verdict
Subtitle provides a straightforward way to include subtitles in your content, but its outdated status and limited support may be a concern for some users.
From the developer
ShinichiN's own description of Subtitle, lightly tidied.
Displays subtitle text field after the title in post, page and other post type edit page.
Retriving and displaying in templates
Use get_nskw_subtitle() to retrieve and nskw_subtitle() to display.
Change label
By default the label of the input field is "Subtitle". There's a hook for changing it.
add_filter( 'nskw-fat-meta_label', 'nskw_changeLabel' );
function nskw_changeLabel() {
return 'new label';
}
Hide in specific post types
By default, subtitle field appears in every post type edit pages except for attachment.
To hide in particular post type pages, there’s a hook.
// hide subtitle field in posttype 'attachment', 'page'、''newposttype'
add_filter( 'nskw-fat_post_type', 'nskw_hide_subtitle' );
function nskw_hide_subtitle() {
return array( 'attachment', 'page', 'newposttype' );
}