Notice: WP_Widget is deprecated since version 4.3.0
-
Upgrading to 4.3.0 gives an error:
( ! ) Notice: The called constructor method for WP_Widget is <strong>deprecated</strong> since version 4.3.0! Use <pre>__construct()</pre> instead. in [...]\wp-includes\functions.php on line 3457
Changing tw-recent-posts-widget.php line 48 from:
$this->WP_Widget('tw-recent-posts', __('TW Recent Posts ', $this->localization_domain), $widget_ops);
to
parent::__construct('tw-recent-posts', __('TW Recent Posts ', $this->localization_domain), $widget_ops);
appears to fix it.
- The topic ‘Notice: WP_Widget is deprecated since version 4.3.0’ is closed to new replies.