The called constructor method for WP_Widget in AnyUserTwitterFeed is deprecated
-
This plugin is throwing a notice, a pity because it does, simply, exactly what I need.
Notice: The called constructor method for WP_Widget in AnyUserTwitterFeed is deprecated since version 4.3.0! Use __construct() instead.
So I did what it said; in any-user-twitter-feed.php
change line 153 fromparent::WP_Widget(false, 'Any User Twitter Feed', array('description' => 'Embedding Twitter timelines or search'), $control_ops);
to
parent::_construct(false, 'Any User Twitter Feed', array('description' => 'Embedding Twitter timelines or search'), $control_ops);
Job done.
- The topic ‘The called constructor method for WP_Widget in AnyUserTwitterFeed is deprecated’ is closed to new replies.