Conversation
supportThe function create_function() is deprecated in PHP 7.2. Please change line 34 of pubexchange_widget.php From if($this->settings->pubexchange_publication_id){ //register PubExchange widget add_action('widgets_init', create_function('', 'return register_widget("WP_Widget_PubExchange");')); } To if($this->settings->pubexchange_publication_id){ //register PubExchange widget add_action('widgets_init', function() {register_widget("WP_Widget_PubExchange");}); } This topic was modified 7 years, 9 months ago by Lee Hodson (VR51) .
No comments were stored for this source.