Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created January 27, 2018 05:06
Show Gist options
  • Save wichaksono/6d1eb1f08f75102702c37e19f08ff34b to your computer and use it in GitHub Desktop.
Save wichaksono/6d1eb1f08f75102702c37e19f08ff34b to your computer and use it in GitHub Desktop.
// ...
// nilai default bila $instance['title'] belum diset / kosong (empty)
$title = ! empty( $instance['title'] ) ? $instance['title'] : esc_html__( 'New title' );
?>
<p>
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_attr_e( 'Title:' ); ?></label>
<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"
name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>"
type="text" value="<?php echo esc_attr( $title ); ?>">
</p>
<?php
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment