wp_is_theme_directory_ignored()WP 6.0.0

Determines whether a theme directory should be ignored during export.

Хуков нет.

Возвращает

bool. Whether this file is in an ignored directory.

Использование

wp_is_theme_directory_ignored( $path );
$path(строка) (обязательный)
The path of the file in the theme.

Список изменений

С версии 6.0.0 Введена.

Код wp_is_theme_directory_ignored() WP 7.1

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 ) );
}