WP_Paused_Extensions_Storage::get( string $extension )

Gets the error for an extension, if paused.


Description Description


Parameters Parameters

$extension

(string) (Required) Plugin or theme directory name.


Top ↑

Return Return

(array|null) Error that is stored, or null if the extension is not paused.


Top ↑

Source Source

File: wp-includes/class-wp-paused-extensions-storage.php

	public function get( $extension ) {
		if ( ! $this->is_api_loaded() ) {
			return null;
		}

		$paused_extensions = $this->get_all();

		if ( ! isset( $paused_extensions[ $extension ] ) ) {
			return null;
		}

		return $paused_extensions[ $extension ];
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.