概要説明
記事タイトルのプレースホルダーを変更して、何を入力したら良いかをより明確にさせるためのカスタマイズ。初期値ではなくプレースホルダーである点に注意です。
記事タイトルの初期値(プレースホルダー)を変更
functions.php
/*----------------------------------------------------
記事タイトルの初期値(プレースホルダー)を変更
----------------------------------------------------*/
if ( !function_exists( 'post_type_default_title' ) ){
function post_type_default_title( $title ) {
$screen = get_current_screen();
//投稿
if ( $screen->post_type == 'post' ) {
$title = 'タイトルを追加';
//固定ページ
} else if ( $screen->post_type == 'page' ) {
$title = '固定ページのタイトル';
//カスタム投稿タイプ:news
} else if ( $screen->post_type == 'news' ) {
$title = 'お知らせタイトル';
}
return $title;
}
add_filter( 'enter_title_here', 'post_type_default_title' );
}



