$this->set_license('1415b451be1a13c283ba771ea52d38bb');
return true;
public function pro_is_authorized() {
$this->set_license('1415b451be1a13c283ba771ea52d38bb');
return true; //增加
$license = $this->get_license();
if ( empty( $license ) ) {
return false;
}
if ( is_multisite() && $this->pro_wpmu ) {
$authorized = get_site_option( $this->pro_auth_store );
} else {
$authorized = get_option( $this->pro_auth_store );
}
return $authorized;
}