Apraksts
This plugin automatically converts language accent characters in filenames when uploading to the media library. Characters are converted into browser and server friendly, non-accent characters.
Iespējas
- Converts accent characters to non-accent, latin equivalents in Swedish, Danish, German, and more.
- Removes special characters like exclamation marks, periods, hashtags, and more.
- Lets you choose if you want to convert only image files, or all file types.
- Makes site and server migrations easier thanks to non-accent character filenames.
- Provides filter hook for developers who want to specify which file types to convert.
Examples
- Räksmörgås.jpg raksmorgas.jpg
- Æblegrød_FTW!.gif aeblegrod-ftw.gif
- Château de Ferrières.png chateau-de-ferrieres.png
Worth noting
The plugin only converts filenames when the files are being uploaded. It can not convert existing files.
Filter for developers
This filter provides developers a way to specify which file types the plugin should convert. This filter overrides the plugin settings on the media settings page. For a complete list of mime types, see Wikipedia.
The following example will convert PDF, JPEG and PNG files only:
function my_clean_image_filenames_mime_types() {
$mime_types = array(
'application/pdf',
'image/jpeg',
'image/png',
);
return $mime_types;
}
add_filter( 'clean_image_filenames_mime_types', 'my_clean_image_filenames_mime_types' );
Ekrānuzņēmumi
Uzstādīšana
- Search for Clean Image Filenames in the plugins directory.
- Install and activate the plugin.
or
- Download and unzip the plugin and upload the
clean-image-filenames
directory to your/plugins/
directory. - Aktivizē šo spraudni caur WordPress sadaļu “Spraudņi”
BUJ
-
Can this plugin convert filenames of existing files in the media library?
-
Nē, šis spraudnis attīra nosaukumus failiem tikai tad, kad tie tiek augšupielādēti uz Multivides Bibliotēku.
Atsauksmes
Autori un izstrādātāji
“Attīrīti attēlu nosaukumi” ir atvērtā pirmkoda programmatūra. Šo spraudni ir veidojuši šādi cilvēki.
Līdzdalībnieki“Attīrīti attēlu nosaukumi” ir tulkots lokalizācijās 9. Paldies tulkotājiem par ieguldījumu.
Tulkot “Attīrīti attēlu nosaukumi” savā valodā.
Vai jūs interesē attīstība?
Pārlūkojiet kodu, apmeklējiet SVN krātuvi vai abonējiet attīstības žurnālu, ko izveidojis RSS.
Izmaiņu žurnāls
1.5
- Add support for WebP and AVIF image formats. Thanks to @vinkla for the pull request.
1.4
- Add support for cleaning filenames when sideloaded (usually when uploaded programmatically) using the wp_handle_sideload_prefilter hook.
1.3
- Rewrite cleaning function to better handle specific characters.
- Make sure code is compliant with WordPress Coding Standards.
1.2.1
- Izveidota iespēja spraudni internacionalizēt / pārtulkot citās valodās.
1.2
- Oriģinālā, neattīrītā faila nosaukuma uzstādīšana par virsrakstu pielikumam.
1.1.1
- Pievienots skripts, kas izdzēš spraudņa uzstādījumus brīdī, kad tas tiek atinstalēts.
1.1
- Spraudņa iestatījumi pievienoti Multivides iestatījumu lapai, ar iespējām pārveidot nosaukumus visiem failu tipiem vai tikai attēliem.
- Pievienots īsceļš uz spraudņa iestatījumiem, no uzstādīto spraudņu saraksta.
1.0
- Sākotnējais Izdevums.