Conversation
supportThe text boxes seem to be working correctly but when I enable debug mode i get the following error. Deprecated: Function create_function() is deprecated in W:\websites\www.mywebsitename.com\wp-content\plugins\wp-special-textboxes\wp-special-textboxes.php on line 48 How can I resolve this? I am ok with copying and pasting PHP code, but don’t understand it enough to know how to fix this. Thank you in advance.
Change line 48 to: add_action(‘widgets_init’, function() {return register_widget(“special_text”); } ); It should help.
I have fixed it by replacing line 48 with: // add_action('widgets_init', create_function('', 'return register_widget("special_text");')); add_action('widgets_init', function() { return register_widget("special_text"); } );
Change line 48 to: add_action(‘widgets_init’, function() {return register_widget(“special_text”); } ); It should help.
I have fixed it by replacing line 48 with: // add_action('widgets_init', create_function('', 'return register_widget("special_text");')); add_action('widgets_init', function() { return register_widget("special_text"); } );