Good to hear!
Here’s a change I notice while fixing another issue. It looks like deprecation is happening with crewate_function and this change seems to make it better…
class-post-notif-widget.php, line 276.
//add_action( ‘widgets_init’, create_function( ”, ‘register_widget(“Post_Notif_Widget”);’ ) );
add_action ( ‘widgets_init’, ‘Post_Notif_init_Widget’ );
function Post_Notif_init_Widget() {
return register_widget(‘Post_Notif_Widget’);
}