How to create a widget with a populated dropdown?
I finally got the widget built. I hope this will help another newbie. <?php /* * Plugin Name: Events Widget Description: This widget allows the user to select an Event name. Version: 0.5 Author: Dan Statham */ function gdd_Events_load_widgets() { write_log(‘gdd _Events_load_widgets’); }// gdd_Events_load_widgets // Register the widget function my_register_events_widget() { register_widget( ‘gdd_Events_load_widgets’ ); } … Read more