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.

Image

Subtitle

Description

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' );
}

Screenshots

Installation

  1. Upload subtitle folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Subtitle” adalah perisian sumber terbuka. Orang-orang berikut telah menyumbang kepada pemalam ini.

Penyumbang

Translate “Subtitle” into your language.

Berminat dalam pembangunan?

Layari kod, periksa repositori SVN, atau langgani log pembangunan dengan RSS.

Changelog

0.1 First Release.