[insert_php]
$dir = ‘wp-content/uploads/2017/SGC2017/VI. DIR. GRAL. DE PLANEACCION Y CALIDAD/51. REVISION POR LA DIRECCION/*.pdf’;
$files = glob($dir);
sort($files);
foreach ($files as $file) {
if ($file != ‘.’ && $file != ‘..’) {
echo ««.utf8_encode(basename($file) ).»\n»;
}
}
[/insert_php]