Hi guys,
I would like to know how can I allow the entry field from the widget class-widget-service.php to allow HTML tags.
This is the piece of code related:
<p>
<label for="<?php echo $this->get_field_id( 'entry' ); ?>"><?php _e( 'Entry:', 'illdy' ); ?></label>
<textarea class="widefat" rows="16" cols="20" id="<?php echo $this->get_field_id( 'entry' ); ?>" name="<?php echo $this->get_field_name( 'entry' ); ?>"><?php echo esc_textarea( $entry ); ?></textarea></p>
</p>
Does anyone know how to allow Entry to accept HTML tags (such as <br> and stuff like that).
Thanks!