Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created January 27, 2018 05:06
Show Gist options
  • Save wichaksono/eaf25e7d37435a5dd074011afba43ce7 to your computer and use it in GitHub Desktop.
Save wichaksono/eaf25e7d37435a5dd074011afba43ce7 to your computer and use it in GitHub Desktop.
// ....
$widget_html = $args['before_widget'];
$nama = "";
if ( ! empty( $instance['title'] ) ) {
$widget_html .= $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ) . $args['after_title'];
$nama = $instance['title'];
}
$widget_html .= "<b>Nama Widget : </b> " . $nama;
echo $widget_html . $args['after_widget'];
// ....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment