Created
January 27, 2018 05:06
-
-
Save wichaksono/6d1eb1f08f75102702c37e19f08ff34b to your computer and use it in GitHub Desktop.
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
// ... | |
// 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