Closed chipbennett closed 8 years ago
Let's fix this, since it's almost a year old:
The called constructor method for WP_Widget in oenology_widget_categories is deprecated since version 4.3.0! Use __construct()
Replace $this->WP_Widget() with parent::__construct() in theme custom Widgets, in functions\widgets.php.
$this->WP_Widget()
parent::__construct()
functions\widgets.php
Let's fix this, since it's almost a year old:
The called constructor method for WP_Widget in oenology_widget_categories is deprecated since version 4.3.0! Use __construct()
Replace
$this->WP_Widget()
withparent::__construct()
in theme custom Widgets, infunctions\widgets.php
.