Showing error "Function create_function() is deprecated"

admin2025-06-05  0

we are getting a error after updating a php version to 7.2

Deprecated: Function create_function() is deprecated in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/themes/Tigerdesign/inc/init.php on line 22

Warning: session_start(): Cannot start session when headers already sent in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/plugins/unyson/framework/includes/hooks.php on line 258

Notice: woocommerce_get_page_id is deprecated since version 3.0! Use wc_get_page_id instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

Notice: WC_Cart::get_cart_url is deprecated since version 2.5! Use wc_get_cart_url instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

we are getting a error after updating a php version to 7.2

Deprecated: Function create_function() is deprecated in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/themes/Tigerdesign/inc/init.php on line 22

Warning: session_start(): Cannot start session when headers already sent in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-content/plugins/unyson/framework/includes/hooks.php on line 258

Notice: woocommerce_get_page_id is deprecated since version 3.0! Use wc_get_page_id instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

Notice: WC_Cart::get_cart_url is deprecated since version 2.5! Use wc_get_cart_url instead. in /customers/3/6/9/vakantiewoning-in-zuid-frankrijk.be/httpd.www/wp-includes/functions.php on line 3888

Share Improve this question edited Dec 31, 2018 at 7:20 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Dec 31, 2018 at 7:01 Devloper FirstDevloper First 411 gold badge1 silver badge3 bronze badges 1
  • Look at the file path in the first error. The problem is with your theme. You will need to contact the theme developer. Based on that error, and the last two errors, your theme is out of date and has not been updated for newer versions of WooCommerce and PHP. – Jacob Peattie Commented Dec 31, 2018 at 8:04
Add a comment  | 

1 Answer 1

Reset to default 4

Problem lies in your theme. It’s not compatible with PHP 7.2.

In this version the create_function is deprecated and you should use Anonymous Functions instead.

So for example instead of something like this:

$callback = create_function('', 'echo "'.str_replace('"', '\"', $section['desc']).'";');

You should use this:

$callback = function() {
    echo str_replace('"', '\"', $section['desc']);
};
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749056707a315985.html

最新回复(0)