• //Doesn't work with updated wp and php
    add_action('widgets_init', create_function('', 'return register_widget("Featured_Post_Widget");') , 100);
    
    //replace with this line
    add_action('widgets_init', function(){ return register_widget("Featured_Post_Widget"); }, 100);
  • The topic ‘create_function on last line deprecated’ is closed to new replies.