Incompatible with PHP 7
-
There is a problem with the contructor:
function Widget_CF7() {
$widget_ops = array( ‘description’ => __( “Widget for Contact Form 7”) );
$this->WP_Widget(‘custom_cf7’, __(‘Contact Form 7’), $widget_ops);
}Please change it to:
function __construct() {
$widget_ops = array( ‘description’ => __( “Widget for Contact Form 7”) );
$this->WP_Widget(‘custom_cf7’, __(‘Contact Form 7’), $widget_ops);
}function Widget_CF7() {
self::__construct();
}
- The topic ‘Incompatible with PHP 7’ is closed to new replies.