open the plugin file “execphp.php”
replace
add_action('widgets_init', create_function('', 'return register_widget("PHP_Code_Widget");'));
with
function php_code_widget_init (){
return register_widget('PHP_Code_Widget');
}
add_action('widgets_init', 'php_code_widget_init');
-
This reply was modified 3 years, 5 months ago by ghost994.