text Generar crear小部件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Generar crear小部件相关的知识,希望对你有一定的参考价值。

<?php 

add_action( 'widgets_init', function(){
    register_widget( 'Nombre_De_Clase_ID_Class' );
});

class Nombre_De_Clase_ID_Class extends WP_Widget {

    #Sets up the widgets name etc

    public function __construct() {
        $widget_ops = array(
            'classname' => 'Nombre_De_Clase_ID_Class',
            'description' => 'description',
        );
        parent::__construct( 'Nombre_De_Clase_ID_Class', 'nombre', $widget_ops );
    }


    # Display frontend

    public function widget( $argus, $instance ) {
 
        echo $argus['before_widget'];
        if ( ! empty( $instance['title'] ) ) {
            echo $argus['before_title'] . apply_filters( 'widget_title', $instance['title'] ). $argus['after_title'];
        } ?>

		<!-- Añadir contenido -->
        
        <?php echo $argus['after_widget'];
    }


    #Parameters Form of Widget
    public function form( $instance ) {
        $title = ! empty( $instance['title'] ) ? $instance['title'] : __( '', 'text_domain' );
        ?>
            <p>
            <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
            <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>">
            </p>
        <?php
    }


    #Save Data
    public function update( $new_instance, $old_instance ) {
        // processes widget options to be saved
        foreach( $new_instance as $key => $value )
        {
            $updated_instance[$key] = sanitize_text_field($value);
        }

        return $updated_instance;
    }
}

以上是关于text Generar crear小部件的主要内容,如果未能解决你的问题,请参考以下文章

text cambiar una url a descarga como PDF descarga generar API

text Crear una tabla创建表clase crear clase base de datos b6)

text Creare IDOC(步骤指南)

text crear tabla temporal

text CREAR PROYECTO AGAVE

text postgres crear触发器