wp_skip_paused_themes()WP 5.2.0

Filters a given list of themes, removing any paused themes from it.

No Hooks.

Return

String[]. Filtered array of absolute paths to themes, without any paused themes.

Usage

wp_skip_paused_themes( $themes );
$themes(string[]) (required)
Array of absolute theme directory paths.

Changelog

Since 5.2.0 Introduced.

wp_skip_paused_themes() code WP 6.4.3

function wp_skip_paused_themes( array $themes ) {
	$paused_themes = wp_paused_themes()->get_all();

	if ( empty( $paused_themes ) ) {
		return $themes;
	}

	foreach ( $themes as $index => $theme ) {
		$theme = basename( $theme );

		if ( array_key_exists( $theme, $paused_themes ) ) {
			unset( $themes[ $index ] );

			// Store list of paused themes for displaying an admin notice.
			$GLOBALS['_paused_themes'][ $theme ] = $paused_themes[ $theme ];
		}
	}

	return $themes;
}