acf-move-wp-editor
acf-move-wp-editor copied to clipboard
Not working in PHP v8
Seems there is an issue with PHP v8
might need to declare the property ahead of time first
class init {
// Declare the property explicitly (public, private, or protected as needed)
public $settings;
public function __construct() {
$this->settings = array(); // No warning now as $settings is declared
}
}```
Ah, I haven't used this plugin in many years. Care to do a PR?