Как ввести встроенный пост Twitter в виджет Twitter? - PullRequest
0 голосов
/ 30 мая 2019

Я создаю виджет Twitter, где вы можете ввести HTML-код из встроенного поста Twitter. Проблема заключается в том, что при вводе HTML-кода textfield в виджете в параметрах виджета изменяет HTML-код на обычный текст.

С кодом ниже это выглядит так:

image of twitter post

class Twitter_Widget extends WP_Widget {
    // Class constructor
    public function __construct() {
        $widget_ops = array( 
            'classname' => 'twitter-plugin',
            'description' => 'This plugin will provide twitter widget',
        );
        parent::__construct( 'twitter', 'Twitter Widget', $widget_ops );
    }

    // Output the widget content on the front-end
    public function widget( $args, $instance ) {
        echo $args['before_widget'];
        if ( ! empty( $instance['title'] ) ) {
            echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ) . $args['after_title'];
        }

        echo $instance['link'];

        echo $args['after_widget'];
    }

    // Output the option form field in admin Widgets screen
    public function form( $instance ) {
        ?>
            <label >Enter Link:</label>
            <input type="text" name="<?php echo $this->get_field_name('link'); ?>" value="<?php echo $instance["link"] ?>">

        <?php
    }

    // Save options
    public function update( $new_instance, $old_instance ) {
        $instance = array();
        $instance['link'] = strip_tags($new_instance['link']);

        return $instance;
    }

}

Я ожидаю, что это будет, например, так:

enter image description here

...