[insert_php]
$dir = ‘wp-content/uploads/2017/SGC2017/I. SECRETARIA GENERAL/4. LICENCIATURAS DE SERVICIO/4. PROPUESTA DE LA PLANTILLA DE PERSONAL DOCENTE/REGISTROS PROPUESTA DE LA PLANTILLA/*.*’;
$files = glob($dir);
sort($files);
foreach ($files as $file) {
if ($file != ‘.’ && $file != ‘..’) {
echo ««.utf8_encode(basename($file) ).»\n»;
}
}
[/insert_php]