Closed generatepress closed 8 years ago
Was testing with PHP7 and found the following:
PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; WPAlchemy_MetaBox has a deprecated constructor in /wpalchemy/MetaBox.php on line 55
Might be worth tweaking.
Pretty sure this can be fixed by changing
function WPAlchemy_MetaBox($arr)
to
function __construct($arr)
here
Awesome - this works!
Was testing with PHP7 and found the following:
Might be worth tweaking.