// Gettext Tekst w WordPress
funkcja filter_gettext ($translation, $text, $domain) {
$translations = &get_translations_for_domain ($domain);
jeżeli ($text == "Środek "): powrotny $translations->translate ("Zasoby "); endif;
jeżeli ($text == "Medialny Biblioteka "): powrotny $translations->translate ("Zasoby Biblioteka "); endif;
jeżeli ($text == "Upload Nowy Środek "): powrotny $translations->translate ("Dodawać Nowy Zasoby "); endif;
powrotny $translation;
}
add_filter ("gettext", "filter_gettext", 10, 3);
// Zmiana the Medialny Ikona
funkcja replace_media_library_icon () {
echo '';
}
add_action ("admin_print_styles", "replace_media_library_icon", 50, 3);
|