classwidget_tagsextendsWP_Widget{

    //添加小工具

    function__construct(){

        $this->WP_Widget('random_posts',__('随机文章','Bing'),array('description'=>__('显示几篇随机文章','Bing')));

    }

    //小工具内容

    functionwidget($args,$instance){

        //导入当前侧边栏设置

        extract($args,EXTR_SKIP);

        //添加小工具标题过滤器

        $title=apply_filters('widget_name',$instance['title']);

        //输出小工具前代码

        echo$before_widget;

            //输出小工具标题

            echo$before_title.$title.$after_title;

            //随机文章

            query_posts('orderby=rand&showposts='.$instance['number']);

            if(have_posts()):

                echo'<ul>';

                    while(have_posts()):

                        the_post();

                        printf('<li><a href="%s" title="%s">%s</a></li>',get_permalink(),get_the_title(),get_the_title());

                    endwhile;

                echo'</ul>';

            endif;

        //输出小工具后代码

        echo$after_widget;

    }

    //更新选项

    functionupdate($instance,$old_instance){

        $instance['title']=strip_tags($instance['title']);

        $instance['number']=(int)strip_tags($instance['number']);

        return$instance;

    }

    //选项表单

    functionform($instance){

        //添加默认设置

        $instance=wp_parse_args($instance,array(

            'title'=>__('随机文章','Bing'),

            'number'=>10

        ));

        //设置表单

?>

        <p>

            <label for="<?phpecho$this->get_field_id('title');?>"><?php_e('标题','Bing');?></label>

            <input class="widefat"id="<?phpecho$this->get_field_id('title');?>"name="<?phpecho$this->get_field_name('title');?>"type="text"value="<?phpecho$instance['title'];?>"/>

        </p>

        <p>

            <label for="<?phpecho$this->get_field_id('number');?>"><?php_e('文章数量','Bing');?></label>

            <input class="widefat"id="<?phpecho$this->get_field_id('number');?>"name="<?phpecho$this->get_field_name('number');?>"type="number"value="<?phpecho$instance['number'];?>"/>

        </p>

<?php

    }

}

functionBing_add_widget_tags(){

    register_widget('widget_tags');

}

add_action('widgets_init','Bing_add_widget_tags');