repeater setting value function
-
Am I reading this code wrong? Is the value lost if not an array?
In theKirki_Settings_Repeater_Settingclass:public function value() { $value = parent::value(); if ( ! is_array( $value ) ) { $value = array(); } return $value; }If the value is not an array, make it an empty array.
Should that instead be$value = (array) $value;?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘repeater setting value function’ is closed to new replies.