このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Subtitle

説明

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

スクリーンショット

  • Subtitle input field appears!

インストール

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

評価

このプラグインにはレビューがありません。

貢献者と開発者

Subtitle はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Subtitle” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

0.1 First Release.