wp_is_theme_directory_ignored()WP 6.0.0

Determines whether a theme directory should be ignored during export.

Хуков нет.

Возвращает

true|false. 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 6.5.2

function wp_is_theme_directory_ignored( $path ) {
	$directories_to_ignore = array( '.DS_Store', '.svn', '.git', '.hg', '.bzr', 'node_modules', 'vendor' );

	foreach ( $directories_to_ignore as $directory ) {
		if ( str_starts_with( $path, $directory ) ) {
			return true;
		}
	}

	return false;
}