WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
sitemap_images
/
.v1.2.3.bck
/
Name
Action
..
install.log
Edit
lang
paquet.xml
Edit
prive
sitemap-images.xml.html
Edit
sitemap-images.xml_fonctions.php
Edit
sitemap.xml.html
Edit
Editing: sitemap-images.xml_fonctions.php
<?php if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Filtre genere un pseudo-titre à une image en se basant sur son nom de fichier * * ex. IMG/jpg/vu-expo-bains-douches-2.jpg -> Vu expo bains douches 2 * * * @param string * Nom complet du fichier * @return string * Pseudo titre */ function titre_naturel($str) { $parts = explode("/", $str); $title = ucfirst(substr(end($parts),0,-4)); $title = str_replace(array("-", "--", "_", "IMG_", "DSC_")," ",$title); return $title; }