I am trying to list images from my theme directory with list_files() WordPress defined function.
$dir_path = get_template_directory_uri() . '/images/';
$images = list_files( $dir_path );
But i am getting the error:
error “undefined function”.
the PHP scandir(), doesn’t work either.