Created
May 25, 2015 14:18
-
-
Save jandrodev/bb6bdd927cd11dad214f to your computer and use it in GitHub Desktop.
Deprecated - Use https://gist.github.com/jandro935/0d4cddf243e13b91550f instead
This file contains hidden or 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
// 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