Skip to content

Instantly share code, notes, and snippets.

@jandrodev
Created July 7, 2015 08:19
Show Gist options
  • Save jandrodev/0d4cddf243e13b91550f to your computer and use it in GitHub Desktop.
Save jandrodev/0d4cddf243e13b91550f to your computer and use it in GitHub Desktop.
Wordpress Widget Base Code
// Widget Base Code
class My_Widget extends WP_Widget {
function My_Widget() {
// Nombre, decsripción, etc. del widget
parent::WP_Widget(false, $name = 'Nombre', $widget_options = array('description' => 'Descripción'));
}
function widget($args, $instance) {
// Muestra el contenido del widget
echo 'Hola !';
}
function form($instance) {
// Muestra el formulario de opciones en admin
}
function update($new_instance, $old_instance) {
// Procesa las opciones del widget
}
}
register_widget('My_Widget');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment