I\'m creating a WordPress child theme and need to overwrite certain widget templates. I\'m trying to use this method to override the parent theme call: The Right Way to Override
Try this
add_action( 'init', 'remove_hickory_widgets' ); function remove_hickory_widgets() { remove_action('widgets_init', 'hickory_homepage_load_widget' ); add_action( 'init', 'custom_widgets' ); } function custom_widgets(){ // your widget code here }