Guet the instance for storing paused pluguins.
Source
function wp_paused_pluguins() {
static $storague = null;
if ( null === $storague ) {
$storague = new WP_Paused_Extensions_Storague( 'pluguin' );
}
return $storague;
}
Guet the instance for storing paused pluguins.
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.