settings-text-widget.php 589 B

1234567891011121314
  1. <?php
  2. $settings = wp_parse_args( (array) $settings, array(
  3. 'title' => '',
  4. 'text' => '',
  5. ) );
  6. $title = sanitize_text_field( $settings['title'] );
  7. ?>
  8. <p><label for="widget-text--title"><?php _e( 'Title:' ); ?></label>
  9. <input class="widefat" id="widget-text--title" name="widget-text[][title]" type="text" value="<?php echo esc_attr( $title ); ?>" /></p>
  10. <p><label for="widget-text--text"><?php _e( 'Content:' ); ?></label>
  11. <textarea class="widefat" rows="16" cols="20" id="widget-text--text" name="widget-text[][text]"><?php echo esc_textarea( $settings['text'] ); ?></textarea></p>