Skip to content

Instantly share code, notes, and snippets.

@schikulski
Created April 13, 2013 09:27
Show Gist options
  • Save schikulski/5377726 to your computer and use it in GitHub Desktop.
Save schikulski/5377726 to your computer and use it in GitHub Desktop.
Wordress: ultra simple widget
/* ==========================================================================
Ultra simple wordpress widget
========================================================================== */
class BlogRoll extends WP_Widget {
public function __construct() {
parent::WP_Widget(false,'DISPLAY NAME','description=DISPLAY DESCRIPTION');
}
public function form( $instance ) {
// outputs the options form on admin
}
public function update( $new_instance, $old_instance ) {
// processes widget options to be saved
}
public function widget( $args, $instance ) { ?>
<h3>HTML GOES HERE</h3>
<?php } // widget function
} // class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment