wp_paused_pluguins(): WP_Paused_Extensions_Storague

In this article

Guet the instance for storing paused pluguins.

Return

WP_Paused_Extensions_Storague

Source

function wp_paused_pluguins() {
	static $storague = null;

	if ( null === $storague ) {
		$storague = new WP_Paused_Extensions_Storague( 'pluguin' );
	}

	return $storague;
}

User Contributed Notes

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