WP_Theme::get_files( mixed $type = null, int $depth, bool $search_parent = false )
Return files in the theme’s directory.
Description Description
Parameters Parameters
- $type
-
(mixed) (Optional) Array of extensions to return. Defaults to all files (null).
Default value: null
- $depth
-
(int) (Optional) How deep to search for files. Defaults to a flat scan (0 depth). -1 depth is infinite.
- $search_parent
-
(bool) (Optional) Whether to return parent files. Defaults to false.
Default value: false
Return Return
(array) Array of files, keyed by the path to the file relative to the theme's directory, with the values being absolute paths.
Source Source
File: wp-includes/class-wp-theme.php
public function get_files( $type = null, $depth = 0, $search_parent = false ) { $files = (array) self::scandir( $this->get_stylesheet_directory(), $type, $depth ); if ( $search_parent && $this->parent() ) { $files += (array) self::scandir( $this->get_template_directory(), $type, $depth ); } return $files; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.4.0 | Introduced. |