Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function form( $instance ) {
- /* Set up some default widget settings. */
- $defaults = array( 'title' => 'TAG CLOUD', 'number' => '10', 'small' => '8', 'large' => '12');
- $instance = wp_parse_args( (array) $instance, $defaults );
- ?>
- <p>
- <label for="<?php echo $this->get_field_id( 'title' ); ?>">
- <?php _e('Title:', 'fabulous') ?>
- </label>
- <input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" style="width:100%;" />
- </p>
- <p>
- <label for="<?php echo $this->get_field_id( 'number' ); ?>">
- <?php _e('Number:', 'fabulous') ?>
- </label>
- <input id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" style="width:100%;" />
- </p>
- <p>
- <label for="<?php echo $this->get_field_id( 'small' ); ?>">
- <?php _e('Smallest:', 'fabulous') ?>
- </label>
- <input id="<?php echo $this->get_field_id( 'small' ); ?>" name="<?php echo $this->get_field_name( 'small' ); ?>" value="<?php echo $instance['small']; ?>" style="width:100%;" />
- </p>
- <p>
- <label for="<?php echo $this->get_field_id( 'large' ); ?>">
- <?php _e('Largest:', 'fabulous') ?>
- </label>
- <input id="<?php echo $this->get_field_id( 'large' ); ?>" name="<?php echo $this->get_field_name( 'large' ); ?>" value="<?php echo $instance['large']; ?>" style="width:100%;" />
- </p>
- <?php
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement