Skip to content

Instantly share code, notes, and snippets.

@jandrodev
Created May 25, 2015 14:18
Show Gist options
  • Save jandrodev/bb6bdd927cd11dad214f to your computer and use it in GitHub Desktop.
Save jandrodev/bb6bdd927cd11dad214f to your computer and use it in GitHub Desktop.
// Widget Base Code
add_action("widgets_init", array('Widget_name', 'register'));
class Widget_name {
function control(){
echo 'I am a control panel';
}
function widget($args){
echo $args['before_widget'];
// Widget Content ...
echo $args['after_widget'];
}
function register(){
register_sidebar_widget('Widget Name', array('Widget_name', 'widget'));
register_widget_control('Widget Name', array('Widget_name', 'control'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment