PHP Deprecated
-
Function create_function() is deprecated in /path/to/wordpress/wp-content/plugins/shariff/shariff.php on line 1491
add_action( 'widgets_init', create_function( '', 'return register_widget("ShariffWidget");' ) );should be
add_action( 'widgets_init', function(){ register_widget( 'ShariffWidget' ); });
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘PHP Deprecated’ is closed to new replies.