Noptin_Subscriber::__set( string $key, mixed $value )
Magic method for setting custom subscriber fields.
Description Description
This method does not update custom fields in the database. It only stores the value on the Noptin_Subscriber instance.
Parameters Parameters
- $key
(string) (Required) subscriber meta key.
- $value
(mixed) (Required) subscriber meta value.
Source Source
File: includes/class-noptin-subscriber.php
public function __set( $key, $value ) { if ( 'id' === strtolower( $key ) ) { $this->id = $value; $this->data->id = $value; return; } $this->data->$key = $value; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.2.7 | Introduced. |