Determines whether a theme directory should be ignored during export.
Parameters
$pathstringrequired- The path of the file in the theme.
Source
function wp_is_theme_directory_ignored( $path ) {
$directories_to_ignore = array( '.DS_Store', '.svn', '.git', '.hg', '.bzr', 'node_modules', 'vendor' );
return array_any( $directories_to_ignore, fn( $directory ) => str_starts_with( $path, $directory ) );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.