wordpress 「タイトルを入力してください」変更

function change_default_title( $title ) {
	$screen = get_current_screen();
	if ( 'POST_TYPE' == $screen->post_type ) {
		$title = 'これは指定したものだけ変更します';
	} else if ( $screen -> post_type == 'post' ) {
		$title = 'これは投稿だけ変更します';
	}
	return $title;
}
add_filter('enter_title_here', 'change_default_title');
PAGE TOP