Registering multiple copies of a widget
You really need to be using the Widget API. Here is a widget shell to get you started. class WPSE_Widget_Shell extends WP_Widget { function __construct() { $opts = array( ‘description’ => ‘Brief description; shows on the backend’ ); parent::WP_Widget( ‘widget-id’, ‘Widget Name’, // shows on the backend $opts ); } function form($instance) { echo ‘backend … Read more