duanlu8613 2019-05-30 01:18
浏览 155

如何在twitter小部件中输入嵌入式Twitter帖子?

I'm creating a Twitter widget where you can enter HTML code from an embedded Twitter post. The problem is, when I enter the HTML code, the textfield in the widget at widget options changes the HTML code to normal text.

With the code below, it looks like this:

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;
    }

}

I expect it to be, for example, like this:

enter image description here

展开全部

  • 写回答

0条回答 默认 最新

      编辑
      预览

      报告相同问题?

      悬赏问题

      • ¥15 我的stdio文件出问题了吗
      • ¥15 模型代码复现,在训练时代码报错
      • ¥15 mosek求解器问题
      • ¥15 ansys导出mnf,模型为轴承
      • ¥15 stm32怎么跑满ad值
      • ¥15 Python异步/多进程/多线程问题
      • ¥15 Autoupdater更新报错
      • ¥20 用ps制作一个杂志封面,封面任意
      • ¥15 用java实现抓鬼游戏
      • ¥20 comsol激光烧蚀老跑崩,求帮助
      手机看
      程序员都在用的中文IT技术交流社区

      程序员都在用的中文IT技术交流社区

      专业的中文 IT 技术社区,与千万技术人共成长

      专业的中文 IT 技术社区,与千万技术人共成长

      关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

      关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

      客服 返回
      顶部