Warning: The called constructor method for WP_Widget…
-
With latest WP and version 1.0.9 of plugin and
WP_DEBUG
enabled, a ‘The called constructor method for WP_Widget is deprecated…’ warning shows up.Current code:
$this->WP_Widget( 'themeblvd_news_scroller_widget', 'Theme Blvd News Scroller', $widget_ops, $control_ops );
Suggested new code:
parent::__construct( 'themeblvd_news_scroller_widget', 'Theme Blvd News Scroller', $widget_ops, $control_ops );
Please fix, thanks. Find more information here.
- The topic ‘Warning: The called constructor method for WP_Widget…’ is closed to new replies.