Descripción
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' );
}
Capturas
Instalación
- Upload
subtitle
folder to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
Reseñas
No hay valoraciones para este plugin.
Colaboradores y desarrolladores
«Subtitle» es un software de código abierto. Las siguientes personas han colaborado con este plugin.
ColaboradoresTraduce «Subtitle» a tu idioma.
¿Interesado en el desarrollo?
Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.
Registro de cambios
0.1 First Release.