The called constructor method for WP_Widget is deprecated since version 4.3
-
If you get this notice after you update to the latest version of wordpress (4.3), you just need to make a little change until the author of the plugin release an update.
NOTE: This is just a patch, do it at your own risk! But I can garantee it totally works ??
1- In your Dashboard go to Plugins / Editor
2- In the top right corner click on the drop down menu and select the plugin WordPress Access Control and click on Select
3- Click on the file wordpress-access-control/default-widgets.php
4- Search for the string WP_Widget. On the line 30 you will see
parent::WP_Widget( 'nav_menu', __('Custom Menu'), $widget_ops );
replace it with
parent::__construct( 'nav_menu', __('Custom Menu'), $widget_ops );
5- Click Save and Enjoy it!
- The topic ‘The called constructor method for WP_Widget is deprecated since version 4.3’ is closed to new replies.