Created
April 13, 2013 09:27
-
-
Save schikulski/5377726 to your computer and use it in GitHub Desktop.
Wordress: ultra simple widget
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ========================================================================== | |
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