Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created October 6, 2014 14:54
Show Gist options
  • Save igmoweb/22ee9bcfa2fe2c2d3ab5 to your computer and use it in GitHub Desktop.
Save igmoweb/22ee9bcfa2fe2c2d3ab5 to your computer and use it in GitHub Desktop.
<?php
function widget( $args, $instance ) {
extract( $args );
$title = apply_filters( 'widget_title', $instance['title'] );
?>
<?php echo $before_widget; ?>
<?php if ( $title )
echo $before_title . $title . $after_title; ?>
Hola, mundo
<?php echo $after_widget; ?>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment