Create a simple widget
The correct question would be “how to create a widget”? No code was initiated. I recommend reading this tutorial: Building Custom WordPress Widgets Anyway… your widget: class widget_simple extends WP_Widget { // Create Widget function widget_simple() { parent::WP_Widget(false, $name=”Custom Simple Widget”, array(‘description’ => ”)); } // Widget Content function widget($args, $instance) { extract( $args ); … Read more