Upload sayfasında resimde işaretlediğim alandaki

1-yazı boyutu yazısını nasıl değiştirebilirim?

2- yada işaretlediğim alan içindeki tüm yazıyı nasıl kaldırabilirim.

Not: plugin ile değil fonksiyon ile yapmak istiyorum.



Şöyle bir fonksiyon buldum ama hiçbir değişiklik olmadı:

add_action('post-html-upload-ui', function () {
add_filter('gettext', 'media_upload_limit_custom_text');
});
/**
* Customize the max media size text
* @param string $text
* @return string $text
*/
function media_upload_limit_custom_text($text) {
if ($text == 'Maximum upload file size: %s.') {
return __('Image files must be smaller than 5000 KB', 'your-text-domain');
}
return $text;
}