WordPressの投稿画面のプレースホルダー「ここにタイトルを入力」を変更する

functions.phpに以下を追加します。

function change_default_title( $title ) {
    $screen = get_current_screen();
    if ( $screen -> post_type == 'post' ) {
        $title = 'ここに◯◯を入力します'; //変更したい文言
    }
    return $title;
}
add_filter('enter_title_here', 'change_default_title');

WordPress:「タイトルを入力してください」を任意の文言に変更する方法