The function create_function has been deprecated as of PHP 7.2. Worked previously in PHP 5 but after updating PHP crashes.
$func = create_function('$atts, $content = null','return "<div class=\"' . $class_list . '\">" . do_shortcode($content) . "</div>";' );
add_shortcode($shortcode, $func);
}
Can anyone help me in fixing my code?