• Bub

    (@jdenning47)


    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();
    }

    • This topic was modified 9 years, 2 months ago by Bub.

The topic ‘Incompatible with PHP 7’ is closed to new replies.