Я использовал вишневый плагин на моем WordPress сайте. Но для PHP 7.2 функция create_function () устарела.
$conditional_function = create_function('', 'return '.cherry_condition($options_type[$id],
$options[$id], $users[$id]).';');
$conditional_result = $conditional_function();
Я поменял на:
$conditional_function = function(){return cherry_condition($options_type[$id], $options[$id],
$users[$id]);};
$conditional_result = $conditional_function();
Но есть много ошибок:
Undefined variable: options_type
Undefined variable: id
Undefined variable: options
Есть идеи?