Subtitle
·
Displays subtitle text field after the title in post, page and other post type edit page.
등급
3/5
버전
0.1
활성화된 설치 항목
100
최근 업데이트일
May 1, 2013
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' );
}
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.